Class OperationType
- java.lang.Object
-
- com.nimbusds.oauth2.sdk.id.Identifier
-
- com.nimbusds.openid.connect.sdk.federation.api.OperationType
-
- All Implemented Interfaces:
Serializable,Comparable<Identifier>,net.minidev.json.JSONAware
@Immutable public final class OperationType extends Identifier
Federation API operation type.Related specifications:
- OpenID Connect Federation 1.0, section 6.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static OperationTypeFETCHFetch operation.static OperationTypeLISTINGListing operation.static OperationTypeRESOLVE_METADATAResolve metadata operation.-
Fields inherited from class com.nimbusds.oauth2.sdk.id.Identifier
DEFAULT_BYTE_LENGTH, secureRandom
-
-
Constructor Summary
Constructors Constructor Description OperationType(String value)Creates a new operation type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)-
Methods inherited from class com.nimbusds.oauth2.sdk.id.Identifier
compareTo, getValue, hashCode, toJSONString, toString, toStringList
-
-
-
-
Field Detail
-
FETCH
public static final OperationType FETCH
Fetch operation.
-
RESOLVE_METADATA
public static final OperationType RESOLVE_METADATA
Resolve metadata operation.
-
LISTING
public static final OperationType LISTING
Listing operation.
-
-
Constructor Detail
-
OperationType
public OperationType(String value)
Creates a new operation type.- Parameters:
value- The operation type value. Must not benull,
-
-
Method Detail
-
equals
public boolean equals(Object object)
- Overrides:
equalsin classIdentifier
-
-