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

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


     *
     * </p>
   */
  public ResourceReferenceDt getAppointment() { 
    if (myAppointment == null) {
      myAppointment = new ResourceReferenceDt();
    }
    return myAppointment;
  }
View Full Code Here


     * <b>Definition:</b>
     *
     * </p>
   */
  public ResourceReferenceDt addIndividual() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getIndividual().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * The resource(s) that were generated by  the activity described in this resource. A provenance can point to more than one target if multiple resources were created/updated by the same activity
     * </p>
   */
  public ResourceReferenceDt addTarget() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getTarget().add(newType);
    return newType;
  }
View Full Code Here

     * Where the activity occurred, if relevant
     * </p>
   */
  public ResourceReferenceDt getLocation() { 
    if (myLocation == null) {
      myLocation = new ResourceReferenceDt();
    }
    return myLocation;
  }
View Full Code Here

     * Information about the request for this event
     * </p>
   */
  public ResourceReferenceDt getRequest() { 
    if (myRequest == null) {
      myRequest = new ResourceReferenceDt();
    }
    return myRequest;
  }
View Full Code Here

     * Information about the response for this event
     * </p>
   */
  public ResourceReferenceDt getResponse() { 
    if (myResponse == null) {
      myResponse = new ResourceReferenceDt();
    }
    return myResponse;
  }
View Full Code Here

     * A constraint on a resource used in the document
     * </p>
   */
  public ResourceReferenceDt getProfile() { 
    if (myProfile == null) {
      myProfile = new ResourceReferenceDt();
    }
    return myProfile;
  }
View Full Code Here

     * A link to a resource representing the person whom the ordered item is for
     * </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 getSupplier() { 
    if (mySupplier == null) {
      mySupplier = new ResourceReferenceDt();
    }
    return mySupplier;
  }
View Full Code Here

     * Identification of the facility/location where the Supply was shipped to, as part of the dispense event.
     * </p>
   */
  public ResourceReferenceDt getDestination() { 
    if (myDestination == null) {
      myDestination = new ResourceReferenceDt();
    }
    return myDestination;
  }
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.