public static enum SipSecurity.EmptyRoleSemantic extends Enum<SipSecurity.EmptyRoleSemantic>
Enum Constant and Description |
---|
DENY
Access is to be denied independent of authentication state and identity.
|
PERMIT
Access is to be permitted independent of authentication state and identity.
|
Modifier and Type | Method and Description |
---|---|
static SipSecurity.EmptyRoleSemantic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SipSecurity.EmptyRoleSemantic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SipSecurity.EmptyRoleSemantic DENY
public static final SipSecurity.EmptyRoleSemantic PERMIT
public static SipSecurity.EmptyRoleSemantic[] values()
for (SipSecurity.EmptyRoleSemantic c : SipSecurity.EmptyRoleSemantic.values()) System.out.println(c);
public static SipSecurity.EmptyRoleSemantic 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.