915916917918919920921922923
* <b>Definition:</b> * * </p> */ public Base64BinaryDt addB64Err() { Base64BinaryDt newType = new Base64BinaryDt(); getB64Err().add(newType); return newType; }
949950951952953954955956
*/ public Test addB64Err( byte[] theBytes) { if (myB64Err == null) { myB64Err = new java.util.ArrayList<Base64BinaryDt>(); } myB64Err.add(new Base64BinaryDt(theBytes)); return this; }
99399499599699799899910001001
* <b>Definition:</b> * * </p> */ public Base64BinaryDt addB64Corr() { Base64BinaryDt newType = new Base64BinaryDt(); getB64Corr().add(newType); return newType; }
10271028102910301031103210331034
*/ public Test addB64Corr( byte[] theBytes) { if (myB64Corr == null) { myB64Corr = new java.util.ArrayList<Base64BinaryDt>(); } myB64Corr.add(new Base64BinaryDt(theBytes)); return this; }
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; }
264426452646264726482649265026512652
* Actual certificate * </p> */ public Base64BinaryDt getBlob() { if (myBlob == null) { myBlob = new Base64BinaryDt(); } return myBlob; }
26712672267326742675267626772678
* <b>Definition:</b> * Actual certificate * </p> */ public RestSecurityCertificate setBlob( byte[] theBytes) { myBlob = new Base64BinaryDt(theBytes); return this; }