Interface ShIMSData
-
public interface ShIMSData
Interface for tShIMSData complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tShIMSData"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="SCSCFName" type="{}tSIP_URL" minOccurs="0"/> <element name="IFCs" type="{}tIFCs" minOccurs="0"/> <element name="IMSUserState" type="{}tIMSUserState" minOccurs="0"/> <element name="ChargingInformation" type="{}tChargingInformation" minOccurs="0"/> <element name="Extension" type="{}tShIMSDataExtension" minOccurs="0"/> <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- Author:
- OpenCloud
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List
getAny()
Gets the value of the any property.ChargingInformation
getChargingInformation()
Gets the value of the chargingInformation property.ShIMSDataExtension
getExtension()
Gets the value of the extension property.IFCs
getIFCs()
Gets the value of the ifCs property.Short
getIMSUserState()
Gets the value of the imsUserState property.String
getSCSCFName()
Gets the value of the scscfName property.void
setChargingInformation(ChargingInformation value)
Sets the value of the chargingInformation property.void
setExtension(ShIMSDataExtension value)
Sets the value of the extension property.void
setIFCs(IFCs value)
Sets the value of the ifCs property.void
setIMSUserState(Short value)
Sets the value of the imsUserState property.void
setSCSCFName(String value)
Sets the value of the scscfName property.
-
-
-
Method Detail
-
getSCSCFName
String getSCSCFName()
Gets the value of the scscfName property.- Returns:
- possible object is
String
-
setSCSCFName
void setSCSCFName(String value)
Sets the value of the scscfName property.- Parameters:
value
- allowed object isString
-
setIFCs
void setIFCs(IFCs value)
Sets the value of the ifCs property.- Parameters:
value
- allowed object isIFCs
-
getIMSUserState
Short getIMSUserState()
Gets the value of the imsUserState property.- Returns:
- possible object is
Short
-
setIMSUserState
void setIMSUserState(Short value)
Sets the value of the imsUserState property.- Parameters:
value
- allowed object isShort
-
getChargingInformation
ChargingInformation getChargingInformation()
Gets the value of the chargingInformation property.- Returns:
- possible object is
ChargingInformation
-
setChargingInformation
void setChargingInformation(ChargingInformation value)
Sets the value of the chargingInformation property.- Parameters:
value
- allowed object isChargingInformation
-
getExtension
ShIMSDataExtension getExtension()
Gets the value of the extension property.- Returns:
- possible object is
ShIMSDataExtension
-
setExtension
void setExtension(ShIMSDataExtension value)
Sets the value of the extension property.- Parameters:
value
- allowed object isShIMSDataExtension
-
getAny
List getAny()
Gets the value of the any property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the any property.For example, to add a new item, do as follows:
getAny().add(newItem);
Objects of the following type(s) are allowed in the list
Element
Object
-
-