public static enum SessionKeepAlive.Refresher extends Enum<SessionKeepAlive.Refresher>
Enum Constant and Description |
---|
NONE
Equivalent to no refresher parameter in Session-Expires
header.
|
UAC
Equivalent to refresher parameter value of "uac".
|
UAS
Equivalent to refresher parameter value of "uas".
|
Modifier and Type | Method and Description |
---|---|
static SessionKeepAlive.Refresher |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionKeepAlive.Refresher[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionKeepAlive.Refresher NONE
public static final SessionKeepAlive.Refresher UAC
public static final SessionKeepAlive.Refresher UAS
public static SessionKeepAlive.Refresher[] values()
for (SessionKeepAlive.Refresher c : SessionKeepAlive.Refresher.values()) System.out.println(c);
public static SessionKeepAlive.Refresher 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 nullCopyright © 1996-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.