Package be.recipe.services.executor
Class ExecutorRequest
- java.lang.Object
-
- be.recipe.services.executor.ExecutorRequest
-
- Direct Known Subclasses:
CreateFeedbackParam,GetPrescriptionForExecutorParam,GetPrescriptionStatusParam,ListNotificationsParam,ListOpenPrescriptionsParam,ListReservationsParam,ListRidsHistoryParam,ListRidsInProcessParam,MarkAsArchivedParam,MarkAsDeliveredParam,MarkAsUndeliveredParam,PutRidsInProcessParam,RevokePrescriptionParam
public class ExecutorRequest extends Object
Java class for ExecutorRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ExecutorRequest"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="executorId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="mandateHolderId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="session" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringexecutorIdprotected StringmandateHolderIdprotected byte[]session
-
Constructor Summary
Constructors Constructor Description ExecutorRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExecutorId()Gets the value of the executorId property.StringgetMandateHolderId()Gets the value of the mandateHolderId property.byte[]getSession()Gets the value of the session property.voidsetExecutorId(String value)Sets the value of the executorId property.voidsetMandateHolderId(String value)Sets the value of the mandateHolderId property.voidsetSession(byte[] value)Sets the value of the session property.
-
-
-
Method Detail
-
getExecutorId
public String getExecutorId()
Gets the value of the executorId property.- Returns:
- possible object is
String
-
setExecutorId
public void setExecutorId(String value)
Sets the value of the executorId property.- Parameters:
value- allowed object isString
-
getMandateHolderId
public String getMandateHolderId()
Gets the value of the mandateHolderId property.- Returns:
- possible object is
String
-
setMandateHolderId
public void setMandateHolderId(String value)
Sets the value of the mandateHolderId property.- Parameters:
value- allowed object isString
-
getSession
public byte[] getSession()
Gets the value of the session property.- Returns:
- possible object is byte[]
-
setSession
public void setSession(byte[] value)
Sets the value of the session property.- Parameters:
value- allowed object is byte[]
-
-