org.oma.protocols.mlp.svc_result.Tlrep 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="tlrep">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="ns:req_id"/>
* <xs:element ref="ns:trl_pos" maxOccurs="unbounded"/>
* <xs:element ref="ns:time_remaining" minOccurs="0"/>
* </xs:sequence>
* <xs:attribute type="xs:string" fixed="3.0.0" name="ver"/>
* </xs:complexType>
* </xs:element>
*
*/
public class Tlrep
{
private ReqId reqId;
private List trlPoList = new ArrayList();
private TimeRemaining timeRemaining;
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 'trl_pos' element items.
*
* @return list
*/
public List getTrlPoList() {
return trlPoList;
}
/**
* Set the list of 'trl_pos' element items.
*
* @param list
*/
public void setTrlPoList(List list) {
trlPoList = list;
}
/**
* Get the 'time_remaining' element value.
*
* @return value
*/
public TimeRemaining getTimeRemaining() {
return timeRemaining;
}
/**
* Set the 'time_remaining' element value.
*
* @param timeRemaining
*/
public void setTimeRemaining(TimeRemaining timeRemaining) {
this.timeRemaining = timeRemaining;
}
/**
* 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