Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Whether this is intended to be used with an extensible binding or not
     * </p>
   */
  public ValueSet setExtensible( boolean theBoolean) {
    myExtensible = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here


     * If code comparison is case sensitive when codes within this system are compared to each other
     * </p>
   */
  public BooleanDt getCaseSensitive() { 
    if (myCaseSensitive == null) {
      myCaseSensitive = new BooleanDt();
    }
    return myCaseSensitive;
  }
View Full Code Here

     * <b>Definition:</b>
     * If code comparison is case sensitive when codes within this system are compared to each other
     * </p>
   */
  public Define setCaseSensitive( boolean theBoolean) {
    myCaseSensitive = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * If this code is not for use as a real concept
     * </p>
   */
  public BooleanDt getAbstract() { 
    if (myAbstract == null) {
      myAbstract = new BooleanDt();
    }
    return myAbstract;
  }
View Full Code Here

     * <b>Definition:</b>
     * If this code is not for use as a real concept
     * </p>
   */
  public DefineConcept setAbstract( boolean theBoolean) {
    myAbstract = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Server adds CORS headers when responding to requests - this enables javascript applications to yuse the server
     * </p>
   */
  public BooleanDt getCors() { 
    if (myCors == null) {
      myCors = new BooleanDt();
    }
    return myCors;
  }
View Full Code Here

     * <b>Definition:</b>
     * Server adds CORS headers when responding to requests - this enables javascript applications to yuse the server
     * </p>
   */
  public RestSecurity setCors( boolean theBoolean) {
    myCors = 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

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.