Package ca.uhn.fhir.model.primitive

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


     * A flag to indicate that this conformance statement is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage
     * </p>
   */
  public BooleanDt getExperimental() { 
    if (myExperimental == null) {
      myExperimental = new BooleanDt();
    }
    return myExperimental;
  }
View Full Code Here


     * <b>Definition:</b>
     * A flag to indicate that this conformance statement is authored for testing purposes (or education/evaluation/marketing), and is not intended to be used for genuine usage
     * </p>
   */
  public Conformance setExperimental( boolean theBoolean) {
    myExperimental = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * A flag that indicates whether the application accepts unknown elements as part of a resource.
     * </p>
   */
  public BooleanDt getAcceptUnknown() { 
    if (myAcceptUnknown == null) {
      myAcceptUnknown = new BooleanDt();
    }
    return myAcceptUnknown;
  }
View Full Code Here

     * <b>Definition:</b>
     * A flag that indicates whether the application accepts unknown elements as part of a resource.
     * </p>
   */
  public Conformance setAcceptUnknown( boolean theBoolean) {
    myAcceptUnknown = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * A flag for whether the server is able to return past versions as part of the vRead operation
     * </p>
   */
  public BooleanDt getReadHistory() { 
    if (myReadHistory == null) {
      myReadHistory = new BooleanDt();
    }
    return myReadHistory;
  }
View Full Code Here

     * <b>Definition:</b>
     * A flag for whether the server is able to return past versions as part of the vRead operation
     * </p>
   */
  public RestResource setReadHistory( boolean theBoolean) {
    myReadHistory = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * A flag to indicate that the server allows the client to create new identities on the server. If the update operation is used (client) or allowed (server) to a new location where a resource doesn't already exist. This means that the server allows the client to create new identities on the server
     * </p>
   */
  public BooleanDt getUpdateCreate() { 
    if (myUpdateCreate == null) {
      myUpdateCreate = new BooleanDt();
    }
    return myUpdateCreate;
  }
View Full Code Here

     * <b>Definition:</b>
     * A flag to indicate that the server allows the client to create new identities on the server. If the update operation is used (client) or allowed (server) to a new location where a resource doesn't already exist. This means that the server allows the client to create new identities on the server
     * </p>
   */
  public RestResource setUpdateCreate( boolean theBoolean) {
    myUpdateCreate = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * If true, conformant resource authors SHALL be capable of providing a value for the element and resource consumers SHALL be capable of extracting and doing something useful with the data element.  If false, the element may be ignored and not supported
     * </p>
   */
  public BooleanDt getMustSupport() { 
    if (myMustSupport == null) {
      myMustSupport = new BooleanDt();
    }
    return myMustSupport;
  }
View Full Code Here

     * <b>Definition:</b>
     * If true, conformant resource authors SHALL be capable of providing a value for the element and resource consumers SHALL be capable of extracting and doing something useful with the data element.  If false, the element may be ignored and not supported
     * </p>
   */
  public StructureElementDefinition setMustSupport( boolean theBoolean) {
    myMustSupport = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

TOP

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

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.