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

org.oma.protocols.mlp.svc_result.Slirep 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="slirep">
 *   <xs:complexType>
 *     <xs:sequence>
 *       <xs:element ref="ns:req_id"/>
 *       <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 Slirep { private ReqId reqId; private List poList = new ArrayList(); private String ver; /** * Get the 'req_id' element value. * * @return value */ public ReqId getReqId() { return reqId; } /** * Set the 'req_id' element value. * * @param reqId */ public void setReqId(ReqId reqId) { this.reqId = reqId; } /** * 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 - 2024 Weber Informatics LLC | Privacy Policy