Package ca.uhn.fhir.model.primitive

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


     * A URI that identifies the specification that this mapping is expressed to
     * </p>
   */
  public UriDt getUri() { 
    if (myUri == null) {
      myUri = new UriDt();
    }
    return myUri;
  }
View Full Code Here


     * <b>Definition:</b>
     * A URI that identifies the specification that this mapping is expressed to
     * </p>
   */
  public Mapping setUri( String theUri) {
    myUri = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * An address to which messages and/or replies are to be sent.
     * </p>
   */
  public UriDt getEndpoint() { 
    if (myEndpoint == null) {
      myEndpoint = new UriDt();
    }
    return myEndpoint;
  }
View Full Code Here

     * <b>Definition:</b>
     * An address to which messages and/or replies are to be sent.
     * </p>
   */
  public Messaging setEndpoint( String theUri) {
    myEndpoint = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * The identification of the code system that defines the meaning of the symbol in the code.
     * </p>
   */
  public UriDt getSystem() { 
    if (mySystem == null) {
      mySystem = new UriDt();
    }
    return mySystem;
  }
View Full Code Here

     * <b>Definition:</b>
     * The identification of the code system that defines the meaning of the symbol in the code.
     * </p>
   */
  public CodingDt 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)));
      setCode(theParameter.substring(barIndex + 1));
    } else {
      setCode(theParameter);
    }
  } 
View Full Code Here

     * Identifies a profile that SHALL hold for resources or datatypes referenced as the type of this element. Can be a local reference - to another structure in this profile, or a reference to a structure in another profile
     * </p>
   */
  public UriDt getProfile() { 
    if (myProfile == null) {
      myProfile = new UriDt();
    }
    return myProfile;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies a profile that SHALL hold for resources or datatypes referenced as the type of this element. Can be a local reference - to another structure in this profile, or a reference to a structure in another profile
     * </p>
   */
  public StructureElementDefinitionType setProfile( String theUri) {
    myProfile = new UriDt(theUri);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Includes the contents of the referenced value set as a part of the contents of this value set
     * </p>
   */
  public UriDt addImport() {
    UriDt newType = new UriDt();
    getImport().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.