Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * If true, indicates that no reaction occurred.
     * </p>
   */
  public AdverseReaction setDidNotOccurFlag( boolean theBoolean) {
    myDidNotOccurFlag = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here


            RestResourceSearchParam param;
            if (query == null) {
              param = resource.addSearchParam();
            } else {
              param = query.addParameter();
              param.addUndeclaredExtension(false, ExtensionConstants.PARAM_IS_REQUIRED, new BooleanDt(nextParameter.isRequired()));
            }

            param.setName(nextParamName);
            if (StringUtils.isNotBlank(chain)) {
              param.addChain(chain);
View Full Code Here

     * Whether this patient record is in active use
     * </p>
   */
  public BooleanDt getActive() { 
    if (myActive == null) {
      myActive = new BooleanDt();
    }
    return myActive;
  }
View Full Code Here

     * <b>Definition:</b>
     * Whether this patient record is in active use
     * </p>
   */
  public Patient setActive( boolean theBoolean) {
    myActive = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Indicates that this code was chosen by a user directly - i.e. off a pick list of available items (codes or displays)
     * </p>
   */
  public BooleanDt getPrimary() { 
    if (myPrimary == null) {
      myPrimary = new BooleanDt();
    }
    return myPrimary;
  }
View Full Code Here

     * <b>Definition:</b>
     * Indicates that this code was chosen by a user directly - i.e. off a pick list of available items (codes or displays)
     * </p>
   */
  public CodingDt setPrimary( boolean theBoolean) {
    myPrimary = new BooleanDt(theBoolean);
    return this;
  }
View Full Code Here

     * Whether the organization's record is still in active use
     * </p>
   */
  public BooleanDt getActive() { 
    if (myActive == null) {
      myActive = new BooleanDt();
    }
    return myActive;
  }
View Full Code Here

     * <b>Definition:</b>
     * Whether the organization's record is still in active use
     * </p>
   */
  public Organization setActive( boolean theBoolean) {
    myActive = 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

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.