Class DownloadResponse
- java.lang.Object
-
- org.openehealth.ipf.commons.ihe.hpd.stub.chpidd.DownloadResponse
-
public class DownloadResponse extends Object
Java class for DownloadResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DownloadResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:tc:DSML:2:0:core}batchRequest" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="requestID" type="{http://www.w3.org/2001/XMLSchema}string" /> <xsd:attribute name="pageNumber" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="pageSize" type="xsd:unsignedInt" use="optional"/> <xsd:attribute name="totalNumber" type="xsd:unsignedInt" use="optional"/> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BatchRequest>batchRequestprotected intpageNumberprotected intpageSizeprotected StringrequestIDprotected inttotalCount
-
Constructor Summary
Constructors Constructor Description DownloadResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BatchRequest>getBatchRequest()Gets the value of the batchRequest property.intgetPageNumber()intgetPageSize()StringgetRequestID()Gets the value of the requestID property.intgetTotalCount()voidsetPageNumber(int pageNumber)voidsetPageSize(int pageSize)voidsetRequestID(String value)Sets the value of the requestID property.voidsetTotalCount(int totalCount)
-
-
-
Field Detail
-
batchRequest
protected List<BatchRequest> batchRequest
-
requestID
protected String requestID
-
pageNumber
protected int pageNumber
-
pageSize
protected int pageSize
-
totalCount
protected int totalCount
-
-
Method Detail
-
getBatchRequest
public List<BatchRequest> getBatchRequest()
Gets the value of the batchRequest property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the batchRequest property.For example, to add a new item, do as follows:
getBatchRequest().add(newItem);Objects of the following type(s) are allowed in the list
BatchRequest
-
getRequestID
public String getRequestID()
Gets the value of the requestID property.- Returns:
- possible object is
String
-
setRequestID
public void setRequestID(String value)
Sets the value of the requestID property.- Parameters:
value- allowed object isString
-
getPageNumber
public int getPageNumber()
-
setPageNumber
public void setPageNumber(int pageNumber)
-
getPageSize
public int getPageSize()
-
setPageSize
public void setPageSize(int pageSize)
-
getTotalCount
public int getTotalCount()
-
setTotalCount
public void setTotalCount(int totalCount)
-
-