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

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


     * Reference to a valueset containing the possible options
     * </p>
   */
  public ResourceReferenceDt getOptions() { 
    if (myOptions == null) {
      myOptions = new ResourceReferenceDt();
    }
    return myOptions;
  }
View Full Code Here


     * <b>Definition:</b>
     * A list of profiles supported by the system. For a server, \"supported by the system\" means the system hosts/produces a set of recourses, conformant to a particular profile, and allows its clients to search using this profile and to find appropriate data. For a client, it means the system will search by this profile and process data according to the guidance implicit in the profile.
     * </p>
   */
  public ResourceReferenceDt addProfile() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getProfile().add(newType);
    return newType;
  }
View Full Code Here

     * <b>Definition:</b>
     * The specimen resource that is the target of this relationship
     * </p>
   */
  public ResourceReferenceDt addTarget() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getTarget().add(newType);
    return newType;
  }
View Full Code Here

     * Person who collected the specimen
     * </p>
   */
  public ResourceReferenceDt getCollector() { 
    if (myCollector == null) {
      myCollector = new ResourceReferenceDt();
    }
    return myCollector;
  }
View Full Code Here

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

     * Additive associated with the container
     * </p>
   */
  public ResourceReferenceDt getAdditive() { 
    if (myAdditive == null) {
      myAdditive = new ResourceReferenceDt();
    }
    return myAdditive;
  }
View Full Code Here

     * The organization that the practitioner represents
     * </p>
   */
  public ResourceReferenceDt getOrganization() { 
    if (myOrganization == null) {
      myOrganization = new ResourceReferenceDt();
    }
    return myOrganization;
  }
View Full Code Here

     * <b>Definition:</b>
     * The location(s) at which this practitioner provides care
     * </p>
   */
  public ResourceReferenceDt addLocation() {
    ResourceReferenceDt newType = new ResourceReferenceDt();
    getLocation().add(newType);
    return newType;
  }
View Full Code Here

     * Organization that regulates and issues the qualification
     * </p>
   */
  public ResourceReferenceDt getIssuer() { 
    if (myIssuer == null) {
      myIssuer = new ResourceReferenceDt();
    }
    return myIssuer;
  }
View Full Code Here

     *
     * </p>
   */
  public ResourceReferenceDt getAttachment() { 
    if (myAttachment == null) {
      myAttachment = new ResourceReferenceDt();
    }
    return myAttachment;
  }
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.