Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Access Management Mobile and Social


oracle.security.idaas.rest.common
Enum SubjectID.Type

java.lang.Object
  extended by java.lang.Enum<SubjectID.Type>
      extended by oracle.security.idaas.rest.common.SubjectID.Type

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SubjectID.Type>
Enclosing class:
SubjectID<V>

public static enum SubjectID.Type
extends java.lang.Enum<SubjectID.Type>

Enumeration for SubjectID Type.


Enum Constant Summary
RPUSER
          For RP USER Authentication Integration
TOKEN
          Using Token to represent a subject ID.
UID
          A simple UID without any credential or cryptographic data The Value will be stored as a String object.
UIDASSERTION
          For future use of UID Assertion coming from SAML Token.
USERCREDENTIAL
          The Value will be stored as a "UserCredential" Object, which contains both UID and Credential (aka password)

 

Method Summary
static SubjectID.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SubjectID.Type[] 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

TOKEN

public static final SubjectID.Type TOKEN
Using Token to represent a subject ID. The actual Token format may be OAM Token, JWT Token or SAML Token The Value will be stored as a "Token" object.

UID

public static final SubjectID.Type UID
A simple UID without any credential or cryptographic data The Value will be stored as a String object.

OIC Internal Use only


USERCREDENTIAL

public static final SubjectID.Type USERCREDENTIAL
The Value will be stored as a "UserCredential" Object, which contains both UID and Credential (aka password)

UIDASSERTION

public static final SubjectID.Type UIDASSERTION
For future use of UID Assertion coming from SAML Token.

OIC Internal Use only.


RPUSER

public static final SubjectID.Type RPUSER
For RP USER Authentication Integration

OIC INternal Use Only

Method Detail

values

public static SubjectID.Type[] 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 (SubjectID.Type c : SubjectID.Type.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SubjectID.Type 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 name
java.lang.NullPointerException - if the argument is null

Skip navigation links

Copyright (c) 2012,
Oracle All Rights Reserved.
Built 06/05/2012 17:18:07 PDT