Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.IdentifierDt


     * The main (and possibly only) identifier for the coverage - often referred to as a Subscriber Id, Certificate number or Personal Health Number or Case ID.
     * </p>
   */
  public IdentifierDt getIdentifier() { 
    if (myIdentifier == null) {
      myIdentifier = new IdentifierDt();
    }
    return myIdentifier;
  }
View Full Code Here


     * <b>Definition:</b>
     * The main (and possibly only) identifier for the coverage - often referred to as a Subscriber Id, Certificate number or Personal Health Number or Case ID.
     * </p>
   */
  public Coverage setIdentifier( IdentifierUseEnum theUse,  String theSystem,  String theValue,  String theLabel) {
    myIdentifier = new IdentifierDt(theUse, theSystem, theValue, theLabel);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The main (and possibly only) identifier for the coverage - often referred to as a Subscriber Id, Certificate number or Personal Health Number or Case ID.
     * </p>
   */
  public Coverage setIdentifier( String theSystem,  String theValue) {
    myIdentifier = new IdentifierDt(theSystem, theValue);
    return this;
  }
View Full Code Here

     * Todo
     * </p>
   */
  public IdentifierDt getGroup() { 
    if (myGroup == null) {
      myGroup = new IdentifierDt();
    }
    return myGroup;
  }
View Full Code Here

     * <b>Definition:</b>
     * Todo
     * </p>
   */
  public Coverage setGroup( IdentifierUseEnum theUse,  String theSystem,  String theValue,  String theLabel) {
    myGroup = new IdentifierDt(theUse, theSystem, theValue, theLabel);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Todo
     * </p>
   */
  public Coverage setGroup( String theSystem,  String theValue) {
    myGroup = new IdentifierDt(theSystem, theValue);
    return this;
  }
View Full Code Here

     * Identifies a style or collective of coverage issues by the underwriter, for example may be used to identify a class of coverage or employer group. May also be referred to as a Policy or Group ID.
     * </p>
   */
  public IdentifierDt getPlan() { 
    if (myPlan == null) {
      myPlan = new IdentifierDt();
    }
    return myPlan;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies a style or collective of coverage issues by the underwriter, for example may be used to identify a class of coverage or employer group. May also be referred to as a Policy or Group ID.
     * </p>
   */
  public Coverage setPlan( IdentifierUseEnum theUse,  String theSystem,  String theValue,  String theLabel) {
    myPlan = new IdentifierDt(theUse, theSystem, theValue, theLabel);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies a style or collective of coverage issues by the underwriter, for example may be used to identify a class of coverage or employer group. May also be referred to as a Policy or Group ID.
     * </p>
   */
  public Coverage setPlan( String theSystem,  String theValue) {
    myPlan = new IdentifierDt(theSystem, theValue);
    return this;
  }
View Full Code Here

     * Identifies a sub-style or sub-collective of coverage issues by the underwriter, for example may be used to identify a specific employer group within a class of employers. May be referred to as a Section or Division ID.
     * </p>
   */
  public IdentifierDt getSubplan() { 
    if (mySubplan == null) {
      mySubplan = new IdentifierDt();
    }
    return mySubplan;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.IdentifierDt

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.