public static enum TenantOperationResponse.Result extends java.lang.Enum<TenantOperationResponse.Result>
| Enum Constant and Description |
|---|
ABORT
Indicates the
ITenantOperationsListener was not successful and that the operation
should be cancelled and, if possible, rolled back. |
FAIL
Indicates the
ITenantOperationsListener was not successful, but stops short of
canceling the whole operation. |
IGNORE
Instructs the
TenantService to keep this response out of the report. |
SUCCESS
Indicates the
ITenantOperationsListener was successful. |
| Modifier and Type | Method and Description |
|---|---|
static TenantOperationResponse.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TenantOperationResponse.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TenantOperationResponse.Result SUCCESS
ITenantOperationsListener was successful.public static final TenantOperationResponse.Result FAIL
ITenantOperationsListener was not successful, but stops short of
canceling the whole operation.public static final TenantOperationResponse.Result ABORT
ITenantOperationsListener was not successful and that the operation
should be cancelled and, if possible, rolled back.public static final TenantOperationResponse.Result IGNORE
TenantService to keep this response out of the report.public static TenantOperationResponse.Result[] values()
for (TenantOperationResponse.Result c : TenantOperationResponse.Result.values()) System.out.println(c);
public static TenantOperationResponse.Result 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 null