org.cipango.diameter.ims
Enum Cx.UserAuthorizationType

java.lang.Object
  extended by java.lang.Enum<Cx.UserAuthorizationType>
      extended by org.cipango.diameter.ims.Cx.UserAuthorizationType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Cx.UserAuthorizationType>
Enclosing class:
Cx

public static enum Cx.UserAuthorizationType
extends java.lang.Enum<Cx.UserAuthorizationType>


Enum Constant Summary
DE_REGISTRATION
          This value is used in case of the de-registration.
REGISTRATION
          This value is used in case of the initial registration or re-registration.
REGISTRATION_AND_CAPABILITIES
          This value is used in case of initial registration, re-registration or terminating SIP request and when the I-CSCF explicitly requests S-CSCF capability information from the HSS.
 
Method Summary
static Cx.UserAuthorizationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Cx.UserAuthorizationType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

REGISTRATION

public static final Cx.UserAuthorizationType REGISTRATION
This value is used in case of the initial registration or re-registration. I-CSCF determines this from the Expires field or expires parameter in Contact field in the SIP REGISTER method if it is not equal to zero. This is the default value.


DE_REGISTRATION

public static final Cx.UserAuthorizationType DE_REGISTRATION
This value is used in case of the de-registration. I-CSCF determines this from the Expires field or expires parameter in Contact field in the SIP REGISTER method if it is equal to zero.


REGISTRATION_AND_CAPABILITIES

public static final Cx.UserAuthorizationType REGISTRATION_AND_CAPABILITIES
This value is used in case of initial registration, re-registration or terminating SIP request and when the I-CSCF explicitly requests S-CSCF capability information from the HSS. The I-CSCF shall use this value when the user's current S-CSCF, which is stored in the HSS, cannot be contacted and a new S-CSCF needs to be selected

Method Detail

values

public static Cx.UserAuthorizationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Cx.UserAuthorizationType c : Cx.UserAuthorizationType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Cx.UserAuthorizationType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2010. All Rights Reserved.