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

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


     * The organization of which this organization forms a part
     * </p>
   */
  public ResourceReferenceDt getPartOf() { 
    if (myPartOf == null) {
      myPartOf = new ResourceReferenceDt();
    }
    return myPartOf;
  }
View Full Code Here


     * <b>Definition:</b>
     * Location(s) the organization uses to provide services
     * </p>
   */
  public ResourceReferenceDt addLocation() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getLocation().add(newType);
    return newType;
  }
View Full Code Here

     * The person or device that performed the data entry leading to this message. Where there is more than one candidate, pick the most proximal to the message. Can provide other enterers in extensions
     * </p>
   */
  public ResourceReferenceDt getEnterer() { 
    if (myEnterer == null) {
      myEnterer = new ResourceReferenceDt();
    }
    return myEnterer;
  }
View Full Code Here

     * The logical author of the message - the person or device that decided the described event should happen. Where there is more than one candidate, pick the most proximal to the MessageHeader. Can provide other authors in extensions
     * </p>
   */
  public ResourceReferenceDt getAuthor() { 
    if (myAuthor == null) {
      myAuthor = new ResourceReferenceDt();
    }
    return myAuthor;
  }
View Full Code Here

     * <b>Definition:</b>
     * The actual data of the message - a reference to the root/focus class of the event.
     * </p>
   */
  public ResourceReferenceDt addData() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getData().add(newType);
    return newType;
  }
View Full Code Here

     * Full details of any issues found in the message
     * </p>
   */
  public ResourceReferenceDt getDetails() { 
    if (myDetails == null) {
      myDetails = new ResourceReferenceDt();
    }
    return myDetails;
  }
View Full Code Here

     * Identifies the target end system in situations where the initial message transmission is to an intermediary system.
     * </p>
   */
  public ResourceReferenceDt getTarget() { 
    if (myTarget == null) {
      myTarget = new ResourceReferenceDt();
    }
    return myTarget;
  }
View Full Code Here

     * Subject of the analysis
     * </p>
   */
  public ResourceReferenceDt getSubject() { 
    if (mySubject == null) {
      mySubject = new ResourceReferenceDt();
    }
    return mySubject;
  }
View Full Code Here

     * <b>Definition:</b>
     * SequencingLab taken into account of the analysis
     * </p>
   */
  public ResourceReferenceDt addInputLab() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getInputLab().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * SequencingAnalysis taken into account of the analysis
     * </p>
   */
  public ResourceReferenceDt addInputAnalysis() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getInputAnalysis().add(newType);
    return newType;
  }
View Full Code Here

TOP

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

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.