Enum IdaStatusUnmarshaller.IdaStatusMapperStatus
- java.lang.Object
-
- java.lang.Enum<IdaStatusUnmarshaller.IdaStatusMapperStatus>
-
- uk.gov.ida.saml.hub.transformers.inbound.IdaStatusUnmarshaller.IdaStatusMapperStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IdaStatusUnmarshaller.IdaStatusMapperStatus>
- Enclosing class:
- IdaStatusUnmarshaller<T extends uk.gov.ida.saml.core.domain.IdaStatus>
protected static enum IdaStatusUnmarshaller.IdaStatusMapperStatus extends java.lang.Enum<IdaStatusUnmarshaller.IdaStatusMapperStatus>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IdaStatusUnmarshaller.IdaStatusMapperStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IdaStatusUnmarshaller.IdaStatusMapperStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Success
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus Success
-
NoAuthenticationContext
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus NoAuthenticationContext
-
RequesterError
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus RequesterError
-
RequesterErrorFromIdpAsSentByHub
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus RequesterErrorFromIdpAsSentByHub
-
AuthenticationFailed
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus AuthenticationFailed
-
NoMatchingServiceMatchFromHub
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus NoMatchingServiceMatchFromHub
-
NoMatchingServiceMatchFromMatchingService
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus NoMatchingServiceMatchFromMatchingService
-
MatchingServiceMatch
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus MatchingServiceMatch
-
Healthy
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus Healthy
-
Created
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus Created
-
CreateFailed
public static final IdaStatusUnmarshaller.IdaStatusMapperStatus CreateFailed
-
-
Method Detail
-
values
public static IdaStatusUnmarshaller.IdaStatusMapperStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IdaStatusUnmarshaller.IdaStatusMapperStatus c : IdaStatusUnmarshaller.IdaStatusMapperStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdaStatusUnmarshaller.IdaStatusMapperStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-