Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The identification of the system that provides the coded form of the unit
     * </p>
   */
  public QuantityDt setSystem( String theUri) {
    mySystem = new UriDt(theUri);
    return this;
  }
View Full Code Here


     * Identifies the custom query, defined either in FHIR core or another profile
     * </p>
   */
  public UriDt getDefinition() { 
    if (myDefinition == null) {
      myDefinition = new UriDt();
    }
    return myDefinition;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the custom query, defined either in FHIR core or another profile
     * </p>
   */
  public RestQuery setDefinition( String theUri) {
    myDefinition = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * A base URL for the implementation.  This forms the base for REST interfaces as well as the mailbox and document interfaces.
     * </p>
   */
  public UriDt getUrl() { 
    if (myUrl == null) {
      myUrl = new UriDt();
    }
    return myUrl;
  }
View Full Code Here

     * <b>Definition:</b>
     * A base URL for the implementation.  This forms the base for REST interfaces as well as the mailbox and document interfaces.
     * </p>
   */
  public Implementation setUrl( String theUri) {
    myUrl = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * Establishes the namespace in which set of possible id values is unique.
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
View Full Code Here

     * <b>Definition:</b>
     * Establishes the namespace in which set of possible id values is unique.
     * </p>
   */
  public IdentifierDt setSystem( String theUri) {
    mySystem = new UriDt(theUri);
    return this;
  }
View Full Code Here

   */
  @Override
  public void setValueAsQueryToken(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

     * <b>Definition:</b>
     * A list of profiles that this server implements for accepting documents in the mailbox. If this list is empty, then documents are not accepted. The base specification has the profile identifier \"http://hl7.org/fhir/documents/mailbox\". Other specifications can declare their own identifier for this purpose
     * </p>
   */
  public UriDt addDocumentMailbox() {
    UriDt newType = new UriDt();
    getDocumentMailbox().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Rest addDocumentMailbox( String theUri) {
    if (myDocumentMailbox == null) {
      myDocumentMailbox = new java.util.ArrayList<UriDt>();
    }
    myDocumentMailbox.add(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.