public enum ServiceUpdateReason extends Enum<ServiceUpdateReason>
| Enum Constant and Description |
|---|
ACTIVATED
The service is activated as the primary service of this type.
|
DEACTIVATED
The service has been deactivated as the primary service of its type
|
MANIFEST_UPDATE
The service has updated its manifest.
|
PUBLISHED
The service has just been published with the module and once
activated to the primary service of its type, it will be ready for possible consumption.
|
REMOVED
The service has just been unpublished with the module and is no longer accessible
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceUpdateReason |
valueForString(String value)
Convert String to ServiceUpdateReason
|
static ServiceUpdateReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceUpdateReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceUpdateReason PUBLISHED
public static final ServiceUpdateReason REMOVED
public static final ServiceUpdateReason ACTIVATED
public static final ServiceUpdateReason DEACTIVATED
public static final ServiceUpdateReason MANIFEST_UPDATE
public static ServiceUpdateReason[] values()
for (ServiceUpdateReason c : ServiceUpdateReason.values()) System.out.println(c);
public static ServiceUpdateReason 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 ServiceUpdateReason valueForString(String value)
value - String