public enum ProtocolParam extends Enum<ProtocolParam>
| Enum Constant and Description |
|---|
Gateway
Gateway authentication flag.
|
Pgt
Proxy-granting ticket.
|
PgtId
Proxy-granting ticket identifier sent to proxy callback URL.
|
PgtIou
Proxy-granting ticket IOU identifier.
|
PgtUrl
Proxy-granting ticket callback URL.
|
Renew
Forced authentication flag.
|
Service
Service identifier, which is typically a URL.
|
TargetService
Target service for proxy-granting ticket.
|
Ticket
Service ticket.
|
| Modifier and Type | Method and Description |
|---|---|
String |
id()
Converts enumeration name to lower-case name as used by CAS protocol document.
|
static ProtocolParam |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProtocolParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProtocolParam Service
public static final ProtocolParam Ticket
public static final ProtocolParam Renew
public static final ProtocolParam Gateway
public static final ProtocolParam Pgt
public static final ProtocolParam PgtId
public static final ProtocolParam PgtIou
public static final ProtocolParam PgtUrl
public static final ProtocolParam TargetService
public static ProtocolParam[] values()
for (ProtocolParam c : ProtocolParam.values()) System.out.println(c);
public static ProtocolParam 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 String id()
Copyright © 1999–2015. All rights reserved.