Package ca.uhn.fhir.model.primitive

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


     * An alternative location where the data can be accessed
     * </p>
   */
  public UriDt getUrl() { 
    if (myUrl == null) {
      myUrl = new UriDt();
    }
    return myUrl;
  }
View Full Code Here


     * <b>Definition:</b>
     * An alternative location where the data can be accessed
     * </p>
   */
  public AttachmentDt setUrl( String theUri) {
    myUrl = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * A reference to a domain or server that manages policies under which the document is accessed and/or made available
     * </p>
   */
  public UriDt getPolicyManager() { 
    if (myPolicyManager == null) {
      myPolicyManager = new UriDt();
    }
    return myPolicyManager;
  }
View Full Code Here

     * <b>Definition:</b>
     * A reference to a domain or server that manages policies under which the document is accessed and/or made available
     * </p>
   */
  public DocumentReference setPolicyManager( String theUri) {
    myPolicyManager = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * An identifier that identifies that the format and content of the document conforms to additional rules beyond the base format indicated in the mimeType
     * </p>
   */
  public UriDt addFormat() {
    UriDt newType = new UriDt();
    getFormat().add(newType);
    return newType;
  }
View Full Code Here

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

     * A url at which the document can be accessed
     * </p>
   */
  public UriDt getLocation() { 
    if (myLocation == null) {
      myLocation = new UriDt();
    }
    return myLocation;
  }
View Full Code Here

     * <b>Definition:</b>
     * A url at which the document can be accessed
     * </p>
   */
  public DocumentReference setLocation( String theUri) {
    myLocation = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * WADO-RS URI where Series is available
     * </p>
   */
  public UriDt getUrl() { 
    if (myUrl == null) {
      myUrl = new UriDt();
    }
    return myUrl;
  }
View Full Code Here

     * <b>Definition:</b>
     * WADO-RS URI where Series is available
     * </p>
   */
  public Series setUrl( String theUri) {
    myUrl = new UriDt(theUri);
    return this;
  }
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.