Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.Base64BinaryDt


     * 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;
  }
View Full Code Here


     * <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;
  }
View Full Code Here

     * The calculated hash of the data using SHA-1. Represented using base64
     * </p>
   */
  public Base64BinaryDt getHash() { 
    if (myHash == null) {
      myHash = new Base64BinaryDt();
    }
    return myHash;
  }
View Full Code Here

     * <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;
  }
View Full Code Here

     * Actual certificate
     * </p>
   */
  public Base64BinaryDt getBlob() { 
    if (myBlob == null) {
      myBlob = new Base64BinaryDt();
    }
    return myBlob;
  }
View Full Code Here

     * <b>Definition:</b>
     * Actual certificate
     * </p>
   */
  public RestSecurityCertificate setBlob( byte[] theBytes) {
    myBlob = new Base64BinaryDt(theBytes);
    return this;
  }
View Full Code Here

     * The actual query for a query-type participant object
     * </p>
   */
  public Base64BinaryDt getQuery() { 
    if (myQuery == null) {
      myQuery = new Base64BinaryDt();
    }
    return myQuery;
  }
View Full Code Here

     * <b>Definition:</b>
     * The actual query for a query-type participant object
     * </p>
   */
  public Object setQuery( byte[] theBytes) {
    myQuery = new Base64BinaryDt(theBytes);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public Base64BinaryDt getValue() { 
    if (myValue == null) {
      myValue = new Base64BinaryDt();
    }
    return myValue;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public ObjectDetail setValue( byte[] theBytes) {
    myValue = new Base64BinaryDt(theBytes);
    return this;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.Base64BinaryDt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.