Package be.recipe.services.executor
Class PutRidsInProcessParam
- java.lang.Object
-
- be.recipe.services.executor.ExecutorRequest
-
- be.recipe.services.executor.PutRidsInProcessParam
-
public class PutRidsInProcessParam extends ExecutorRequest
Java class for putRidsInProcessParam complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="putRidsInProcessParam"> <complexContent> <extension base="{http:/services.recipe.be/executor}ExecutorRequest"> <sequence> <element name="rids" type="{http:/services.recipe.be/core}rid" maxOccurs="unbounded"/> <element name="symmKey" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>ridsprotected byte[]symmKey-
Fields inherited from class be.recipe.services.executor.ExecutorRequest
executorId, mandateHolderId, session
-
-
Constructor Summary
Constructors Constructor Description PutRidsInProcessParam()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getRids()Gets the value of the rids property.byte[]getSymmKey()Gets the value of the symmKey property.voidsetSymmKey(byte[] value)Sets the value of the symmKey property.-
Methods inherited from class be.recipe.services.executor.ExecutorRequest
getExecutorId, getMandateHolderId, getSession, setExecutorId, setMandateHolderId, setSession
-
-
-
-
Method Detail
-
getRids
public List<String> getRids()
Gets the value of the rids 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 rids property.For example, to add a new item, do as follows:
getRids().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getSymmKey
public byte[] getSymmKey()
Gets the value of the symmKey property.- Returns:
- possible object is byte[]
-
setSymmKey
public void setSymmKey(byte[] value)
Sets the value of the symmKey property.- Parameters:
value- allowed object is byte[]
-
-