blob: 3740711b86908201f8ea69d4ec994ee0b9d2ec52 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.resource;
import org.eclipse.emf.common.util.EList;
import org.eclipse.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.CodeableConcept;
import org.eclipse.mdht.uml.fhir.core.datatype.Identifier;
import org.eclipse.mdht.uml.fhir.core.datatype.Period;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Practitioner Qualification</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PractitionerQualification#getIdentifiers <em>Identifier</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PractitionerQualification#getCode <em>Code</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PractitionerQualification#getPeriod <em>Period</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.PractitionerQualification#getIssuer <em>Issuer</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPractitionerQualification()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Practitioner_Qualification'"
* @generated
*/
public interface PractitionerQualification extends BackboneElement {
/**
* Returns the value of the '<em><b>Identifier</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Identifier}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Identifier</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Identifier</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPractitionerQualification_Identifier()
* @model
* @generated
*/
EList<Identifier> getIdentifiers();
/**
* Returns the value of the '<em><b>Code</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Code</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Code</em>' reference.
* @see #setCode(CodeableConcept)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPractitionerQualification_Code()
* @model required="true"
* @generated
*/
CodeableConcept getCode();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.PractitionerQualification#getCode <em>Code</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Code</em>' reference.
* @see #getCode()
* @generated
*/
void setCode(CodeableConcept value);
/**
* Returns the value of the '<em><b>Period</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Period</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Period</em>' reference.
* @see #setPeriod(Period)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPractitionerQualification_Period()
* @model
* @generated
*/
Period getPeriod();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.PractitionerQualification#getPeriod <em>Period</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Period</em>' reference.
* @see #getPeriod()
* @generated
*/
void setPeriod(Period value);
/**
* Returns the value of the '<em><b>Issuer</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Issuer</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Issuer</em>' reference.
* @see #setIssuer(Organization)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getPractitionerQualification_Issuer()
* @model
* @generated
*/
Organization getIssuer();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.PractitionerQualification#getIssuer <em>Issuer</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Issuer</em>' reference.
* @see #getIssuer()
* @generated
*/
void setIssuer(Organization value);
} // PractitionerQualification