public enum SessionIdentifierExternalizer extends Enum<SessionIdentifierExternalizer> implements Externalizer<String>
Enum Constant and Description |
---|
BASE64
Specific optimization for identifiers created by
SecureRandomSessionIdGenerator . |
UTF8 |
Modifier and Type | Method and Description |
---|---|
Class<? extends String> |
getTargetClass()
Returns the target class of the object to externalize.
|
static SessionIdentifierExternalizer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionIdentifierExternalizer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
readObject, writeObject
public static final SessionIdentifierExternalizer UTF8
public static final SessionIdentifierExternalizer BASE64
SecureRandomSessionIdGenerator
.public static SessionIdentifierExternalizer[] values()
for (SessionIdentifierExternalizer c : SessionIdentifierExternalizer.values()) System.out.println(c);
public static SessionIdentifierExternalizer valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic Class<? extends String> getTargetClass()
Externalizer
getTargetClass
in interface Externalizer<String>
Copyright © 2018 JBoss by Red Hat. All rights reserved.