Package be.recipe.services.patient
Class ListPatientPrescriptionsResult
- java.lang.Object
-
- be.recipe.services.core.ResponseType
-
- be.recipe.services.patient.ListPatientPrescriptionsResult
-
public class ListPatientPrescriptionsResult extends ResponseType
Java class for listPatientPrescriptionsResult complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="listPatientPrescriptionsResult"> <complexContent> <extension base="{http:/services.recipe.be/core}ResponseType"> <sequence> <element name="prescriptions" type="{http:/services.recipe.be/patient}GetOpenPrescriptionForPatient" maxOccurs="unbounded" minOccurs="0"/> <element name="hasMoreResults" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BooleanhasMoreResultsprotected List<GetOpenPrescriptionForPatient>prescriptions-
Fields inherited from class be.recipe.services.core.ResponseType
id, responseStatus, status
-
-
Constructor Summary
Constructors Constructor Description ListPatientPrescriptionsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetHasMoreResults()List<GetOpenPrescriptionForPatient>getPrescriptions()Gets the value of the prescriptions property.BooleanisHasMoreResults()Gets the value of the hasMoreResults property.voidsetHasMoreResults(Boolean value)Sets the value of the hasMoreResults property.-
Methods inherited from class be.recipe.services.core.ResponseType
getId, getResponseStatus, getStatus, setId, setResponseStatus, setStatus
-
-
-
-
Field Detail
-
prescriptions
protected List<GetOpenPrescriptionForPatient> prescriptions
-
hasMoreResults
protected Boolean hasMoreResults
-
-
Method Detail
-
getPrescriptions
public List<GetOpenPrescriptionForPatient> getPrescriptions()
Gets the value of the prescriptions 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 prescriptions property.For example, to add a new item, do as follows:
getPrescriptions().add(newItem);Objects of the following type(s) are allowed in the list
GetOpenPrescriptionForPatient
-
isHasMoreResults
public Boolean isHasMoreResults()
Gets the value of the hasMoreResults property.- Returns:
- possible object is
Boolean
-
setHasMoreResults
public void setHasMoreResults(Boolean value)
Sets the value of the hasMoreResults property.- Parameters:
value- allowed object isBoolean
-
getHasMoreResults
public Boolean getHasMoreResults()
-
-