Class MultipleServicesIndicator
- java.lang.Object
-
- org.jainslee.resources.diameter.cca.types.MultipleServicesIndicator
-
- All Implemented Interfaces:
Serializable
,Enumerated
public class MultipleServicesIndicator extends Object implements Serializable, Enumerated
Java class to represent the MultipleServicesIndicator enumerated type. Documentation from the relevant specification: The Multiple-Services-Indicator AVP (AVP Code 455) is of type Enumerated and indicates whether the Diameter credit-control client is capable of handling multiple services independently within a (sub-) session. The absence of this AVP means that independent credit-control of multiple services is not supported. A server not implementing the independent credit-control of multiple services MUST treat the Multiple-Services-Indicator AVP as an invalid AVP.- Author:
- Open Cloud
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
_MULTIPLE_SERVICES_NOT_SUPPORTED
static int
_MULTIPLE_SERVICES_SUPPORTED
static MultipleServicesIndicator
MULTIPLE_SERVICES_NOT_SUPPORTED
Client does not support independent credit-control of multiple services within a (sub-)session.static MultipleServicesIndicator
MULTIPLE_SERVICES_SUPPORTED
Client supports independent credit-control of multiple services within a (sub-)session.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MultipleServicesIndicator
fromInt(int type)
int
getValue()
Return the value of this instance of this enumerated type.String
toString()
-
-
-
Field Detail
-
_MULTIPLE_SERVICES_NOT_SUPPORTED
public static final int _MULTIPLE_SERVICES_NOT_SUPPORTED
- See Also:
- Constant Field Values
-
_MULTIPLE_SERVICES_SUPPORTED
public static final int _MULTIPLE_SERVICES_SUPPORTED
- See Also:
- Constant Field Values
-
MULTIPLE_SERVICES_NOT_SUPPORTED
public static final MultipleServicesIndicator MULTIPLE_SERVICES_NOT_SUPPORTED
Client does not support independent credit-control of multiple services within a (sub-)session.
-
MULTIPLE_SERVICES_SUPPORTED
public static final MultipleServicesIndicator MULTIPLE_SERVICES_SUPPORTED
Client supports independent credit-control of multiple services within a (sub-)session.
-
-
Method Detail
-
fromInt
public static MultipleServicesIndicator fromInt(int type)
-
getValue
public int getValue()
Description copied from interface:Enumerated
Return the value of this instance of this enumerated type.- Specified by:
getValue
in interfaceEnumerated
- Returns:
- value
-
-