Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.CodingDt


     * The role that the participant played
     * </p>
   */
  public CodingDt getRole() { 
    if (myRole == null) {
      myRole = new CodingDt();
    }
    return myRole;
  }
View Full Code Here


     * The type of the participant
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

     * The type of the entity. If the entity is a resource, then this is a resource type
     * </p>
   */
  public CodingDt getType() { 
    if (myType == null) {
      myType = new CodingDt();
    }
    return myType;
  }
View Full Code Here

     * Code that identifies the event this message represents and connects it with it's definition. Events defined as part of the FHIR specification have the system value \"http://hl7.org/fhir/message-type\"
     * </p>
   */
  public CodingDt getEvent() { 
    if (myEvent == null) {
      myEvent = new CodingDt();
    }
    return myEvent;
  }
View Full Code Here

     * <b>Definition:</b>
     * A set of terms from external terminologies that may be used to assist with indexing and searching of templates.
     * </p>
   */
  public CodingDt addCode() {
    CodingDt newType = new CodingDt();
    getCode().add(newType);
    return newType;
  }
View Full Code Here

     * A coded identifier of a supported messaging event
     * </p>
   */
  public CodingDt getCode() { 
    if (myCode == null) {
      myCode = new CodingDt();
    }
    return myCode;
  }
View Full Code Here

     * <b>Definition:</b>
     * A list of the messaging transport protocol(s) identifiers, supported by this endpoint
     * </p>
   */
  public CodingDt addProtocol() {
    CodingDt newType = new CodingDt();
    getProtocol().add(newType);
    return newType;
  }
View Full Code Here

     * The code specifying the level of confidentiality of the Composition
     * </p>
   */
  public CodingDt getConfidentiality() { 
    if (myConfidentiality == null) {
      myConfidentiality = new CodingDt();
    }
    return myConfidentiality;
  }
View Full Code Here

     * Genetic disease being assesed
     * </p>
   */
  public CodingDt getGeneticDiseaseAssessed() { 
    if (myGeneticDiseaseAssessed == null) {
      myGeneticDiseaseAssessed = new CodingDt();
    }
    return myGeneticDiseaseAssessed;
  }
View Full Code Here

     * Medication being assesed
     * </p>
   */
  public CodingDt getMedicationAssesed() { 
    if (myMedicationAssesed == null) {
      myMedicationAssesed = new CodingDt();
    }
    return myMedicationAssesed;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.CodingDt

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.