org.oma.protocols.mlp.svc_result.Slrep Maven / Gradle / Ivy
package org.oma.protocols.mlp.svc_result;
import java.util.ArrayList;
import java.util.List;
/**
* Schema fragment(s) for this class:
*
* <xs:element xmlns:ns="MLP_SVC_RESULT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="slrep">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="ns:pos" maxOccurs="unbounded"/>
* </xs:sequence>
* <xs:attribute type="xs:string" fixed="3.0.0" name="ver"/>
* </xs:complexType>
* </xs:element>
*
*/
public class Slrep
{
private List poList = new ArrayList();
private String ver;
/**
* Get the list of 'pos' element items.
*
* @return list
*/
public List getPoList() {
return poList;
}
/**
* Set the list of 'pos' element items.
*
* @param list
*/
public void setPoList(List list) {
poList = list;
}
/**
* Get the 'ver' attribute value.
*
* @return value
*/
public String getVer() {
return ver;
}
/**
* Set the 'ver' attribute value.
*
* @param ver
*/
public void setVer(String ver) {
this.ver = ver;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy