public enum NonApplicableReason extends java.lang.Enum<NonApplicableReason>
Enum Constant and Description |
---|
DEPLOYED_TO_GATEWAY
Service is already deployed to API Gateway and cannot be virtualized
|
LOCKED
Asset is locked by another user
|
NO_PRIVILEGE
User has not the appropriate privileges to perform the action
|
NO_RESOURCE_ENDPOINT
The service has no valid resource, method or endpoint
|
NO_WSDL
No WSDL attached to the service
|
NOT_SUPPORTED
The function is not supported with the asset type
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getReasonMessageId()
Gets the Message ID of the non-applicable reason
|
static NonApplicableReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NonApplicableReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NonApplicableReason LOCKED
public static final NonApplicableReason NO_PRIVILEGE
public static final NonApplicableReason NOT_SUPPORTED
public static final NonApplicableReason DEPLOYED_TO_GATEWAY
public static final NonApplicableReason NO_RESOURCE_ENDPOINT
public static final NonApplicableReason NO_WSDL
public static NonApplicableReason[] values()
for (NonApplicableReason c : NonApplicableReason.values()) System.out.println(c);
public static NonApplicableReason valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getReasonMessageId()