public static enum SipLogin.IdentityAssertion extends Enum<SipLogin.IdentityAssertion>
Enum Constant and Description |
---|
IDENTITY
Indicates that the Identity and Identity-Info headers as specified by RFC 4474
is used as the header for the identity assertion.
|
NONE
Indicates that Identity assertion is not enabled.
|
P_ASSERTED_IDENTITY
Indicates that the P-Asserted-Identity header as specified by RFC 3325 is used
as the header for the identity assertion.
|
WEBSOCKET
Indicates that the identity is authorized based on the SIP identity associated
with the websocket connection.
|
Modifier and Type | Method and Description |
---|---|
static SipLogin.IdentityAssertion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SipLogin.IdentityAssertion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SipLogin.IdentityAssertion P_ASSERTED_IDENTITY
public static final SipLogin.IdentityAssertion IDENTITY
public static final SipLogin.IdentityAssertion WEBSOCKET
public static final SipLogin.IdentityAssertion NONE
public static SipLogin.IdentityAssertion[] values()
for (SipLogin.IdentityAssertion c : SipLogin.IdentityAssertion.values()) System.out.println(c);
public static SipLogin.IdentityAssertion 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.