219220221222223224225226227
* 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; }
246247248249250251252253
* <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; }
351352353354355356357358359
* The calculated hash of the data using SHA-1. Represented using base64 * </p> */ public Base64BinaryDt getHash() { if (myHash == null) { myHash = new Base64BinaryDt(); } return myHash; }
378379380381382383384385
* <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; }
240424052406240724082409241024112412
* Actual certificate * </p> */ public Base64BinaryDt getBlob() { if (myBlob == null) { myBlob = new Base64BinaryDt(); } return myBlob; }
24312432243324342435243624372438
* <b>Definition:</b> * Actual certificate * </p> */ public RestSecurityCertificate setBlob( byte[] theBytes) { myBlob = new Base64BinaryDt(theBytes); return this; }
201120122013201420152016201720182019
* The actual query for a query-type participant object * </p> */ public Base64BinaryDt getQuery() { if (myQuery == null) { myQuery = new Base64BinaryDt(); } return myQuery; }
20382039204020412042204320442045
* <b>Definition:</b> * The actual query for a query-type participant object * </p> */ public Object setQuery( byte[] theBytes) { myQuery = new Base64BinaryDt(theBytes); return this; }
220322042205220622072208220922102211
* * </p> */ public Base64BinaryDt getValue() { if (myValue == null) { myValue = new Base64BinaryDt(); } return myValue; }
22302231223222332234223522362237
* <b>Definition:</b> * * </p> */ public ObjectDetail setValue( byte[] theBytes) { myValue = new Base64BinaryDt(theBytes); return this; }