org.oma.protocols.mlp.svc_init.Vlrid 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="vlrid">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="ns:cc" minOccurs="0"/>
* <xs:element ref="ns:ndc" minOccurs="0"/>
* <xs:element ref="ns:vlrno"/>
* </xs:sequence>
* </xs:complexType>
* </xs:element>
*
*/
public class Vlrid
{
private Cc cc;
private Ndc ndc;
private Vlrno vlrno;
/**
* Get the 'cc' element value.
*
* @return value
*/
public Cc getCc() {
return cc;
}
/**
* Set the 'cc' element value.
*
* @param cc
*/
public void setCc(Cc cc) {
this.cc = cc;
}
/**
* Get the 'ndc' element value.
*
* @return value
*/
public Ndc getNdc() {
return ndc;
}
/**
* Set the 'ndc' element value.
*
* @param ndc
*/
public void setNdc(Ndc ndc) {
this.ndc = ndc;
}
/**
* Get the 'vlrno' element value.
*
* @return value
*/
public Vlrno getVlrno() {
return vlrno;
}
/**
* Set the 'vlrno' element value.
*
* @param vlrno
*/
public void setVlrno(Vlrno vlrno) {
this.vlrno = vlrno;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy