Interface ICustomizationTransitionRule
-
- All Superinterfaces:
com4j.Com4jObject
public interface ICustomizationTransitionRule extends com4j.Com4jObject
Represents a single transition rule. A transition rule allows a change in value from a given source value to a given destination value.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
destinationValue()
The destination value of the transition rule, that is, the value after the change.void
destinationValue(java.lang.String pVal)
The destination value of the transition rule, that is, the value after the change.boolean
isAllowed()
For HP use.void
isAllowed(boolean pVal)
For HP use.java.lang.String
sourceValue()
The source value of the transition rule, that is, the value before the change.void
sourceValue(java.lang.String pVal)
The source value of the transition rule, that is, the value before the change.boolean
updated()
Indicates if the object has been modified since last synchronized with server.void
updated(boolean pVal)
Indicates if the object has been modified since last synchronized with server.
-
-
-
Method Detail
-
sourceValue
java.lang.String sourceValue()
The source value of the transition rule, that is, the value before the change.
Getter method for the COM property "SourceValue"
- Returns:
- Returns a value of type java.lang.String
-
sourceValue
void sourceValue(java.lang.String pVal)
The source value of the transition rule, that is, the value before the change.
Setter method for the COM property "SourceValue"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
destinationValue
java.lang.String destinationValue()
The destination value of the transition rule, that is, the value after the change.
Getter method for the COM property "DestinationValue"
- Returns:
- Returns a value of type java.lang.String
-
destinationValue
void destinationValue(java.lang.String pVal)
The destination value of the transition rule, that is, the value after the change.
Setter method for the COM property "DestinationValue"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
isAllowed
boolean isAllowed()
For HP use. The action defined in the DestinationValue and SourceValue properties is allowed.
Getter method for the COM property "IsAllowed"
- Returns:
- Returns a value of type boolean
-
isAllowed
void isAllowed(boolean pVal)
For HP use. The action defined in the DestinationValue and SourceValue properties is allowed.
Setter method for the COM property "IsAllowed"
- Parameters:
pVal
- Mandatory boolean parameter.
-
updated
boolean updated()
Indicates if the object has been modified since last synchronized with server.
Getter method for the COM property "Updated"
- Returns:
- Returns a value of type boolean
-
updated
void updated(boolean pVal)
Indicates if the object has been modified since last synchronized with server.
Setter method for the COM property "Updated"
- Parameters:
pVal
- Mandatory boolean parameter.
-
-