public enum ServiceCBType extends Enum<ServiceCBType>
Enum Constant and Description |
---|
CREATE
Indicates service create callback.
|
POST_MODIFICATION
Indicates post-modification service callback.
|
PRE_LOCK_CREATE
Indicates (parallel) pre lock service create callback.
|
PRE_MODIFICATION
Indicates pre-modification service callback.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
get integer value for enum
|
static ServiceCBType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceCBType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceCBType CREATE
DpServiceCallback.create(ServiceContext context,
NavuNode service, NavuNode root, Properties opaque)
public static final ServiceCBType POST_MODIFICATION
DpServiceCallback.postModification(ServiceContext context,
ServiceOperationType operation, ConfPath path, Properties opaque)
public static final ServiceCBType PRE_LOCK_CREATE
DpServiceCallback.preLockCreate(ServiceContext context,
NavuNode service, NavuNode root, Properties opaque)
public static final ServiceCBType PRE_MODIFICATION
DpServiceCallback.preModification(ServiceContext context,
ServiceOperationType operation, ConfPath path, Properties opaque)
public int getValue()
public static ServiceCBType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static ServiceCBType[] values()
for (ServiceCBType c : ServiceCBType.values()) System.out.println(c);