Package ca.uhn.fhir.model.primitive

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


   */
  @Override
  public void setValueAsQueryToken(String theQualifier, String theParameter) {
    int barIndex = theParameter.indexOf('|');
    if (barIndex != -1) {
      setSystem(new UriDt(theParameter.substring(0, barIndex)));
      setValue(theParameter.substring(barIndex + 1));
    } else {
      setValue(theParameter);
    }
  } 
View Full Code Here


     * 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

     * <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

   */
  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

     * Identifies the source system, application, or software that produced the document manifest
     * </p>
   */
  public UriDt getSource() { 
    if (mySource == null) {
      mySource = new UriDt();
    }
    return mySource;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the source system, application, or software that produced the document manifest
     * </p>
   */
  public DocumentManifest setSource( String theUri) {
    mySource = new UriDt(theUri);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public UriDt getProvider() { 
    if (myProvider == null) {
      myProvider = new UriDt();
    }
    return myProvider;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public User setProvider( String theUri) {
    myProvider = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * The identification of the system that provides the coded form of the unit
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
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.