|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SignatureStatus>
eu.emi.dsr.security.SignatureStatus
public enum SignatureStatus
Enum with status of the signature verification.
| Enum Constant Summary | |
|---|---|
OK
Request is correctly signed. |
|
OK_BUT_NOT_IN_POLICY
Request is correctly signed, but not all elements required by policy were signed. |
|
UNCHECKED
Signature wasn't checked for this request. |
|
UNSIGNED
Request is unsigned. |
|
WRONG
Request is signed but incorrectly. |
|
| Method Summary | |
|---|---|
static SignatureStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SignatureStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SignatureStatus UNCHECKED
public static final SignatureStatus UNSIGNED
public static final SignatureStatus OK
public static final SignatureStatus WRONG
public static final SignatureStatus OK_BUT_NOT_IN_POLICY
| Method Detail |
|---|
public static SignatureStatus[] values()
for (SignatureStatus c : SignatureStatus.values()) System.out.println(c);
public static SignatureStatus valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||