234235236237238239240241242
* The actual data of the attachment - a sequence of bytes. In XML, represented using base64 * </p> */ public Base64BinaryDt getData() { if (myData == null) { myData = new Base64BinaryDt(); } return myData; }
261262263264265266267268
* <b>Definition:</b> * The actual data of the attachment - a sequence of bytes. In XML, represented using base64 * </p> */ public AttachmentDt setData( byte[] theBytes) { myData = new Base64BinaryDt(theBytes); return this; }
366367368369370371372373374
* The calculated hash of the data using SHA-1. Represented using base64 * </p> */ public Base64BinaryDt getHash() { if (myHash == null) { myHash = new Base64BinaryDt(); } return myHash; }
393394395396397398399400
* <b>Definition:</b> * The calculated hash of the data using SHA-1. Represented using base64 * </p> */ public AttachmentDt setHash( byte[] theBytes) { myHash = new Base64BinaryDt(theBytes); return this; }
258825892590259125922593259425952596
* Actual certificate * </p> */ public Base64BinaryDt getBlob() { if (myBlob == null) { myBlob = new Base64BinaryDt(); } return myBlob; }
26152616261726182619262026212622
* <b>Definition:</b> * Actual certificate * </p> */ public RestSecurityCertificate setBlob( byte[] theBytes) { myBlob = new Base64BinaryDt(theBytes); return this; }
217821792180218121822183218421852186
* The actual query for a query-type participant object * </p> */ public Base64BinaryDt getQuery() { if (myQuery == null) { myQuery = new Base64BinaryDt(); } return myQuery; }
22052206220722082209221022112212
* <b>Definition:</b> * The actual query for a query-type participant object * </p> */ public Object setQuery( byte[] theBytes) { myQuery = new Base64BinaryDt(theBytes); return this; }
236523662367236823692370237123722373
* * </p> */ public Base64BinaryDt getValue() { if (myValue == null) { myValue = new Base64BinaryDt(); } return myValue; }
23922393239423952396239723982399
* <b>Definition:</b> * * </p> */ public ObjectDetail setValue( byte[] theBytes) { myValue = new Base64BinaryDt(theBytes); return this; }