blob: 593b66bca9c4d0ccaf833a0f45fd7b892abf059e [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.mdht.uml.fhir.core.datatype.BackboneElement;
import org.eclipse.mdht.uml.fhir.core.datatype.Base64Binary;
import org.eclipse.mdht.uml.fhir.core.datatype.Code;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Conformance Rest Security Certificate</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceRestSecurityCertificate#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceRestSecurityCertificate#getBlob <em>Blob</em>}</li>
* </ul>
*
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConformanceRestSecurityCertificate()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Security_Certificate'"
* @generated
*/
public interface ConformanceRestSecurityCertificate extends BackboneElement {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Type</em>' reference.
* @see #setType(Code)
* @see org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage#getConformanceRestSecurityCertificate_Type()
* @model
* @generated
*/
Code getType();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceRestSecurityCertificate#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(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.resource.FhirResourcePackage#getConformanceRestSecurityCertificate_Blob()
* @model
* @generated
*/
Base64Binary getBlob();
/**
* Sets the value of the '{@link org.eclipse.mdht.uml.fhir.core.resource.ConformanceRestSecurityCertificate#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);
} // ConformanceRestSecurityCertificate