Package ca.uhn.fhir.model.primitive

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


     * 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

     * <b>Definition:</b>
     *
     * </p>
   */
  public Base64BinaryDt addB64Err() {
    Base64BinaryDt newType = new Base64BinaryDt();
    getB64Err().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Test addB64Err( byte[] theBytes) {
    if (myB64Err == null) {
      myB64Err = new java.util.ArrayList<Base64BinaryDt>();
    }
    myB64Err.add(new Base64BinaryDt(theBytes));
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Base64BinaryDt addB64Corr() {
    Base64BinaryDt newType = new Base64BinaryDt();
    getB64Corr().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Test addB64Corr( byte[] theBytes) {
    if (myB64Corr == null) {
      myB64Corr = new java.util.ArrayList<Base64BinaryDt>();
    }
    myB64Corr.add(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.