Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.UriDt


   */
  public Provenance addPolicy( String theUri) {
    if (myPolicy == null) {
      myPolicy = new java.util.ArrayList<UriDt>();
    }
    myPolicy.add(new UriDt(theUri));
    return this;
  }
View Full Code Here


     * Identity of participant. May be a logical or physical uri and maybe absolute or relative
     * </p>
   */
  public UriDt getReference() { 
    if (myReference == null) {
      myReference = new UriDt();
    }
    return myReference;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identity of participant. May be a logical or physical uri and maybe absolute or relative
     * </p>
   */
  public Agent setReference( String theUri) {
    myReference = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * Identity of participant. May be a logical or physical uri and maybe absolute or relative
     * </p>
   */
  public UriDt getReference() { 
    if (myReference == null) {
      myReference = new UriDt();
    }
    return myReference;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identity of participant. May be a logical or physical uri and maybe absolute or relative
     * </p>
   */
  public Entity setReference( String theUri) {
    myReference = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * Identifies the routing target to send acknowledgements to.
     * </p>
   */
  public UriDt getEndpoint() { 
    if (myEndpoint == null) {
      myEndpoint = new UriDt();
    }
    return myEndpoint;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the routing target to send acknowledgements to.
     * </p>
   */
  public Source setEndpoint( String theUri) {
    myEndpoint = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * Indicates where the message should be routed to.
     * </p>
   */
  public UriDt getEndpoint() { 
    if (myEndpoint == null) {
      myEndpoint = new UriDt();
    }
    return myEndpoint;
  }
View Full Code Here

     * <b>Definition:</b>
     * Indicates where the message should be routed to.
     * </p>
   */
  public Destination setEndpoint( String theUri) {
    myEndpoint = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Policy or plan the activity was defined by. Typically, a single activity may have multiple applicable policy documents, such as patient consent, guarantor funding, etc.
     * </p>
   */
  public UriDt addPolicy() {
    UriDt newType = new UriDt();
    getPolicy().add(newType);
    return newType;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.UriDt

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.