All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oma.protocols.mlp.svc_result.Cgi Maven / Gradle / Ivy


package org.oma.protocols.mlp.svc_result;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:element xmlns:ns="MLP_SVC_RESULT_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 - 2024 Weber Informatics LLC | Privacy Policy