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

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


     * <b>Definition:</b>
     * Identifies the person who picked up the Supply.
     * </p>
   */
  public ResourceReferenceDt addReceiver() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getReceiver().add(newType);
    return newType;
  }
View Full Code Here


     * <b>Definition:</b>
     * Identifies who is responsible for the information in the composition.  (Not necessarily who typed it in.)
     * </p>
   */
  public ResourceReferenceDt addAuthor() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getAuthor().add(newType);
    return newType;
  }
View Full Code Here

     * Identifies the organization or group who is responsible for ongoing maintenance of and access to the composition/document information
     * </p>
   */
  public ResourceReferenceDt getCustodian() { 
    if (myCustodian == null) {
      myCustodian = new ResourceReferenceDt();
    }
    return myCustodian;
  }
View Full Code Here

     * Describes the clinical encounter or type of care this documentation is associated with.
     * </p>
   */
  public ResourceReferenceDt getEncounter() { 
    if (myEncounter == null) {
      myEncounter = new ResourceReferenceDt();
    }
    return myEncounter;
  }
View Full Code Here

     * <b>Definition:</b>
     * Full details for the event(s) the composition/documentation consents
     * </p>
   */
  public ResourceReferenceDt addDetail() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getDetail().add(newType);
    return newType;
  }
View Full Code Here

     * Identifies the discrete data that provides the content for the section.
     * </p>
   */
  public ResourceReferenceDt getContent() { 
    if (myContent == null) {
      myContent = new ResourceReferenceDt();
    }
    return myContent;
  }
View Full Code Here

     * A specification of the profile that describes the solution's support for the resource, including any constraints on cardinality, bindings, lengths or other limitations
     * </p>
   */
  public ResourceReferenceDt getProfile() { 
    if (myProfile == null) {
      myProfile = new ResourceReferenceDt();
    }
    return myProfile;
  }
View Full Code Here

     * A link to a resource representing the person to whom the medication will be given.
     * </p>
   */
  public ResourceReferenceDt getPatient() { 
    if (myPatient == null) {
      myPatient = new ResourceReferenceDt();
    }
    return myPatient;
  }
View Full Code Here

     * The individual responsible for dispensing the medication
     * </p>
   */
  public ResourceReferenceDt getDispenser() { 
    if (myDispenser == null) {
      myDispenser = new ResourceReferenceDt();
    }
    return myDispenser;
  }
View Full Code Here

     * <b>Definition:</b>
     * Indicates the medication order that is being dispensed against.
     * </p>
   */
  public ResourceReferenceDt addAuthorizingPrescription() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getAuthorizingPrescription().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.