Package org.keycloak.models
Enum ImpersonationSessionNote
- java.lang.Object
- 
- java.lang.Enum<ImpersonationSessionNote>
- 
- org.keycloak.models.ImpersonationSessionNote
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ImpersonationSessionNote>,- UserSessionNoteDescriptor
 
 public enum ImpersonationSessionNote extends Enum<ImpersonationSessionNote> implements UserSessionNoteDescriptor Session note metadata for impersonation details stored in user session notes.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description IMPERSONATOR_CLIENTIMPERSONATOR_IDIMPERSONATOR_USERNAME
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplayName()StringgetTokenClaim()static ImpersonationSessionNotevalueOf(String name)Returns the enum constant of this type with the specified name.static ImpersonationSessionNote[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
IMPERSONATOR_IDpublic static final ImpersonationSessionNote IMPERSONATOR_ID 
 - 
IMPERSONATOR_USERNAMEpublic static final ImpersonationSessionNote IMPERSONATOR_USERNAME 
 - 
IMPERSONATOR_CLIENTpublic static final ImpersonationSessionNote IMPERSONATOR_CLIENT 
 
- 
 - 
Method Detail- 
valuespublic static ImpersonationSessionNote[] 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 (ImpersonationSessionNote c : ImpersonationSessionNote.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ImpersonationSessionNote valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getDisplayNamepublic String getDisplayName() - Specified by:
- getDisplayNamein interface- UserSessionNoteDescriptor
- Returns:
- A human-readable name for the session note. This should tell the end user what the session note contains
 
 - 
getTokenClaimpublic String getTokenClaim() - Specified by:
- getTokenClaimin interface- UserSessionNoteDescriptor
- Returns:
- Token claim name/path to store the user session note value in.
 
 
- 
 
-