java.lang.Object com.ibm.broker.config.proxy.OperationType
public final class OperationType
extends Object
The OperationType type is used to describe the outcome of a Configuration Manager request that has been processed. The class definition defines a number of static instances which can be referenced externally.
class com.ibm.broker.config.proxy.OperationType
|
|
Responsibilities | Each instance represents a unique operation that can be performed. |
Internal Collaborators | None |
Change Activity: -------- ----------- ------------- ------------------------------------ Reason: Date: Originator: Comments: -------- ----------- ------------- ------------------------------------ 25103.12 2004-04-07 HDMPL v6 Release
Field | Description |
---|---|
actionresponse | This OperationType is used internally by the Configuration Manager Proxy and is not required by user applications. |
createchild | States that the operation was to create a logical subcomponent. |
delete | States that the operation was to delete an object controlled by the Configuration Manager. |
deletechild | States that the operation was to delete a logical subcomponent. |
deploy | States that the operation was to start or cancel a deployment request. |
deregister | States that the operation was to ask the Configuration Manager to stop keeping the Configuration Manager Proxy up-to-date with changes to the current object. |
modify | States that the operation was to modify attributes of an object controlled by the Configuration Manager. |
register | States that the operation was to ask the Configuration Manager to keep the Configuration Manager Proxy up-to-date with changes to the current object. |
reregister | This OperationType is used internally by the Configuration Manager Proxy and is not required by user applications. |
Method | Description |
---|---|
OperationType getOperationType(int) | Returns the OperationType object that has the supplied int value. |
OperationType getOperationType(String) | Returns the OperationType object that has the supplied String value. |
int intValue() | Returns the unique int associated with this instance. |
String toString() | Returns a String representation of the instance. |
public static final com.ibm.broker.config.proxy.OperationType actionresponseThis OperationType is used internally by the Configuration Manager Proxy and is not required by user applications.
public static final com.ibm.broker.config.proxy.OperationType createchildStates that the operation was to create a logical subcomponent.
public static final com.ibm.broker.config.proxy.OperationType deleteStates that the operation was to delete an object controlled by the Configuration Manager.
public static final com.ibm.broker.config.proxy.OperationType deletechildStates that the operation was to delete a logical subcomponent.
public static final com.ibm.broker.config.proxy.OperationType deployStates that the operation was to start or cancel a deployment request.
public static final com.ibm.broker.config.proxy.OperationType deregisterStates that the operation was to ask the Configuration Manager to stop keeping the Configuration Manager Proxy up-to-date with changes to the current object.
public static final com.ibm.broker.config.proxy.OperationType modifyStates that the operation was to modify attributes of an object controlled by the Configuration Manager.
public static final com.ibm.broker.config.proxy.OperationType registerStates that the operation was to ask the Configuration Manager to keep the Configuration Manager Proxy up-to-date with changes to the current object.
public static final com.ibm.broker.config.proxy.OperationType reregisterThis OperationType is used internally by the Configuration Manager Proxy and is not required by user applications.
public static final OperationType getOperationType(int intValue)Returns the OperationType object that has the supplied int value.
- Parameters
- intValue - - The value to look up
- Returns
- OperationType that has an int value equal to the supplied int, or OperationType.unknown if no such OperationType exists.
public static final OperationType getOperationType(String strValue)Returns the OperationType object that has the supplied String value.
- Parameters
- strValue - - The value to look up
- Returns
- OperationType that has an int value equal to the supplied int, or OperationType.unknown if no such OperationType exists.
public final int intValue()Returns the unique int associated with this instance. Useful in developing switch statements based on completion codes.
- Returns
- int - The unique value associated with this instance.
public final String toString()Returns a String representation of the instance.