public static enum SecurityResponse.SecurityStatus extends Enum<SecurityResponse.SecurityStatus>
| Enum Constant and Description |
|---|
ABSTAIN
Cannot process, not an error.
|
FAILURE
Indicates that the message processing by the security module
was NOT successful.
|
FAILURE_FINISH
Failed and provider did everything to be done.
|
SUCCESS
Indicates that the message processing by the security component
was successful and that the runtime is to proceed with its normal
processing of the resulting message.
|
SUCCESS_FINISH
Succeeded and provider did everything to be done.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isSuccess() |
static SecurityResponse.SecurityStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityResponse.SecurityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityResponse.SecurityStatus SUCCESS
public static final SecurityResponse.SecurityStatus SUCCESS_FINISH
SecurityRequest.responseEntity()SecurityResponseBuilder#responseHeader(String, String)SecurityResponseBuilder#statusCode(int)public static final SecurityResponse.SecurityStatus FAILURE
public static final SecurityResponse.SecurityStatus FAILURE_FINISH
public static final SecurityResponse.SecurityStatus ABSTAIN
public static SecurityResponse.SecurityStatus[] values()
for (SecurityResponse.SecurityStatus c : SecurityResponse.SecurityStatus.values()) System.out.println(c);
public static SecurityResponse.SecurityStatus 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 boolean isSuccess()
Copyright © 2018–2019 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.