blob: 17a03b15029064fe948e46b24624817c50810050 [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.datatype;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Signature</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getTypes <em>Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getWhen <em>When</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getWhox <em>Whox</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getContentType <em>Content Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getBlob <em>Blob</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getSignature()
* @model
* @generated
*/
public interface Signature extends DataType {
/**
* Returns the value of the '<em><b>Type</b></em>' reference list.
* The list contents are of type {@link org.eclipse.mdht.uml.fhir.core.datatype.Coding}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</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>Type</em>' reference list.
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getSignature_Type()
* @model required="true"
* @generated
*/
EList<Coding> getTypes();
/**
* Returns the value of the '<em><b>When</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>When</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>When</em>' reference.
* @see #setWhen(Instant)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getSignature_When()
* @model required="true"
* @generated
*/
Instant getWhen();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getWhen <em>When</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>When</em>' reference.
* @see #getWhen()
* @generated
*/
void setWhen(Instant value);
/**
* Returns the value of the '<em><b>Whox</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Whox</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Whox</em>' reference.
* @see #setWhox(Base)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getSignature_Whox()
* @model required="true"
* annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='who[x]'"
* @generated
*/
Base getWhox();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getWhox <em>Whox</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Whox</em>' reference.
* @see #getWhox()
* @generated
*/
void setWhox(Base value);
/**
* Returns the value of the '<em><b>Content Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Content Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Content Type</em>' reference.
* @see #setContentType(Code)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getSignature_ContentType()
* @model required="true"
* @generated
*/
Code getContentType();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getContentType <em>Content Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Content Type</em>' reference.
* @see #getContentType()
* @generated
*/
void setContentType(Code value);
/**
* Returns the value of the '<em><b>Blob</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Blob</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Blob</em>' reference.
* @see #setBlob(Base64Binary)
* @see org.eclipse.mdht.uml.fhir.core.datatype.FhirDatatypePackage#getSignature_Blob()
* @model required="true"
* @generated
*/
Base64Binary getBlob();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.datatype.Signature#getBlob <em>Blob</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Blob</em>' reference.
* @see #getBlob()
* @generated
*/
void setBlob(Base64Binary value);
} // Signature