Package ca.uhn.fhir.model.primitive

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


     * The timezone should be a value referenced from a timezone database
     * </p>
   */
  public StringDt getTimezone() { 
    if (myTimezone == null) {
      myTimezone = new StringDt();
    }
    return myTimezone;
  }
View Full Code Here


     * <b>Definition:</b>
     * The timezone should be a value referenced from a timezone database
     * </p>
   */
  public AppointmentResponse setTimezone( String theString) {
    myTimezone = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A digital signature on the target resource(s). The signature should match a Provenance.agent.reference in the provenance resource. The signature is only added to support checking cryptographic integrity of the resource, and not to represent workflow and clinical aspects of the signing process, or to support non-repudiation.
     * </p>
   */
  public StringDt getIntegritySignature() { 
    if (myIntegritySignature == null) {
      myIntegritySignature = new StringDt();
    }
    return myIntegritySignature;
  }
View Full Code Here

     * <b>Definition:</b>
     * A digital signature on the target resource(s). The signature should match a Provenance.agent.reference in the provenance resource. The signature is only added to support checking cryptographic integrity of the resource, and not to represent workflow and clinical aspects of the signing process, or to support non-repudiation.
     * </p>
   */
  public Provenance setIntegritySignature( String theString) {
    myIntegritySignature = new StringDt(theString);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * A free text natural language description of the profile and its use
     * </p>
   */
  public Profile setDescription( String theString) {
    myDescription = new StringDt(theString);
    return this;
  }
View Full Code Here

     * The Scope and Usage that this profile was created to meet
     * </p>
   */
  public StringDt getRequirements() { 
    if (myRequirements == null) {
      myRequirements = new StringDt();
    }
    return myRequirements;
  }
View Full Code Here

     * <b>Definition:</b>
     * The Scope and Usage that this profile was created to meet
     * </p>
   */
  public Profile setRequirements( String theString) {
    myRequirements = new StringDt(theString);
    return this;
  }
View Full Code Here

     * A name for the specification that is being mapped to
     * </p>
   */
  public StringDt getName() { 
    if (myName == null) {
      myName = new StringDt();
    }
    return myName;
  }
View Full Code Here

     * <b>Definition:</b>
     * A name for the specification that is being mapped to
     * </p>
   */
  public Mapping setName( String theString) {
    myName = new StringDt(theString);
    return this;
  }
View Full Code Here

     * Comments about this mapping, including version notes, issues, scope limitations, and other important notes for usage
     * </p>
   */
  public StringDt getComments() { 
    if (myComments == null) {
      myComments = new StringDt();
    }
    return myComments;
  }
View Full Code Here

TOP

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

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.