Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The identifier of this message
     * </p>
   */
  public MessageHeader setIdentifier( String theId) {
    myIdentifier = new IdDt(theId);
    return this;
  }
View Full Code Here


     * The id of the message that this message is a response to
     * </p>
   */
  public IdDt getIdentifier() { 
    if (myIdentifier == null) {
      myIdentifier = new IdDt();
    }
    return myIdentifier;
  }
View Full Code Here

     * <b>Definition:</b>
     * The id of the message that this message is a response to
     * </p>
   */
  public Response setIdentifier( String theId) {
    myIdentifier = new IdDt(theId);
    return this;
  }
View Full Code Here

     * The version of the FHIR specification on which this profile is based
     * </p>
   */
  public IdDt getFhirVersion() { 
    if (myFhirVersion == null) {
      myFhirVersion = new IdDt();
    }
    return myFhirVersion;
  }
View Full Code Here

     * <b>Definition:</b>
     * The version of the FHIR specification on which this profile is based
     * </p>
   */
  public Profile setFhirVersion( String theId) {
    myFhirVersion = new IdDt(theId);
    return this;
  }
View Full Code Here

     * An Internal id that is used to identify this mapping set when specific mappings are made
     * </p>
   */
  public IdDt getIdentity() { 
    if (myIdentity == null) {
      myIdentity = new IdDt();
    }
    return myIdentity;
  }
View Full Code Here

     * <b>Definition:</b>
     * An Internal id that is used to identify this mapping set when specific mappings are made
     * </p>
   */
  public Mapping setIdentity( String theId) {
    myIdentity = new IdDt(theId);
    return this;
  }
View Full Code Here

     * Designates which child element is used to discriminate between the slices when processing an instance. The value of the child element in the instance SHALL completely distinguish which slice the element in the resource matches based on the allowed values for that element in each of the slices
     * </p>
   */
  public IdDt getDiscriminator() { 
    if (myDiscriminator == null) {
      myDiscriminator = new IdDt();
    }
    return myDiscriminator;
  }
View Full Code Here

     * <b>Definition:</b>
     * Designates which child element is used to discriminate between the slices when processing an instance. The value of the child element in the instance SHALL completely distinguish which slice the element in the resource matches based on the allowed values for that element in each of the slices
     * </p>
   */
  public StructureElementSlicing setDiscriminator( String theId) {
    myDiscriminator = new IdDt(theId);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * A reference to an invariant that may make additional statements about the cardinality or value in the instance
     * </p>
   */
  public IdDt addCondition() {
    IdDt newType = new IdDt();
    getCondition().add(newType);
    return newType;
  }
View Full Code Here

TOP

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

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.