org.oma.protocols.mlp.svc_init.Cgi Maven / Gradle / Ivy
package org.oma.protocols.mlp.svc_init;
/**
* Schema fragment(s) for this class:
*
* <xs:element xmlns:ns="MLP_SVC_INIT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="cgi">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="ns:mcc"/>
* <xs:element ref="ns:mnc"/>
* <xs:element ref="ns:lac"/>
* <xs:element ref="ns:cellid"/>
* </xs:sequence>
* </xs:complexType>
* </xs:element>
*
*/
public class Cgi
{
private Mcc mcc;
private Mnc mnc;
private Lac lac;
private Cellid cellid;
/**
* Get the 'mcc' element value.
*
* @return value
*/
public Mcc getMcc() {
return mcc;
}
/**
* Set the 'mcc' element value.
*
* @param mcc
*/
public void setMcc(Mcc mcc) {
this.mcc = mcc;
}
/**
* Get the 'mnc' element value.
*
* @return value
*/
public Mnc getMnc() {
return mnc;
}
/**
* Set the 'mnc' element value.
*
* @param mnc
*/
public void setMnc(Mnc mnc) {
this.mnc = mnc;
}
/**
* Get the 'lac' element value.
*
* @return value
*/
public Lac getLac() {
return lac;
}
/**
* Set the 'lac' element value.
*
* @param lac
*/
public void setLac(Lac lac) {
this.lac = lac;
}
/**
* Get the 'cellid' element value.
*
* @return value
*/
public Cellid getCellid() {
return cellid;
}
/**
* Set the 'cellid' element value.
*
* @param cellid
*/
public void setCellid(Cellid cellid) {
this.cellid = cellid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy