blob: e3b6bd12adf87783966c80096023e6ff0accdd5f [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.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.mdht.uml.fhir.core.datatype.Base64Binary;
import org.eclipse.mdht.uml.fhir.core.datatype.Code;
import org.eclipse.mdht.uml.fhir.core.datatype.impl.BackboneElementImpl;
import org.eclipse.mdht.uml.fhir.core.resource.ConformanceRestSecurityCertificate;
import org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Conformance Rest Security Certificate</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.impl.ConformanceRestSecurityCertificateImpl#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.impl.ConformanceRestSecurityCertificateImpl#getBlob <em>Blob</em>}</li>
* </ul>
*
* @generated
*/
public class ConformanceRestSecurityCertificateImpl extends BackboneElementImpl implements ConformanceRestSecurityCertificate {
/**
* The cached value of the '{@link #getType() <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getType()
* @generated
* @ordered
*/
protected Code type;
/**
* The cached value of the '{@link #getBlob() <em>Blob</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getBlob()
* @generated
* @ordered
*/
protected Base64Binary blob;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ConformanceRestSecurityCertificateImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FhirResourcePackage.eINSTANCE.getConformanceRestSecurityCertificate();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Code getType() {
if (type != null && type.eIsProxy()) {
InternalEObject oldType = (InternalEObject)type;
type = (Code)eResolveProxy(oldType);
if (type != oldType) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__TYPE, oldType, type));
}
}
return type;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Code basicGetType() {
return type;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setType(Code newType) {
Code oldType = type;
type = newType;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__TYPE, oldType, type));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Base64Binary getBlob() {
if (blob != null && blob.eIsProxy()) {
InternalEObject oldBlob = (InternalEObject)blob;
blob = (Base64Binary)eResolveProxy(oldBlob);
if (blob != oldBlob) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__BLOB, oldBlob, blob));
}
}
return blob;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Base64Binary basicGetBlob() {
return blob;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setBlob(Base64Binary newBlob) {
Base64Binary oldBlob = blob;
blob = newBlob;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__BLOB, oldBlob, blob));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__TYPE:
if (resolve) return getType();
return basicGetType();
case FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__BLOB:
if (resolve) return getBlob();
return basicGetBlob();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__TYPE:
setType((Code)newValue);
return;
case FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__BLOB:
setBlob((Base64Binary)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__TYPE:
setType((Code)null);
return;
case FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__BLOB:
setBlob((Base64Binary)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__TYPE:
return type != null;
case FhirResourcePackage.CONFORMANCE_REST_SECURITY_CERTIFICATE__BLOB:
return blob != null;
}
return super.eIsSet(featureID);
}
} //ConformanceRestSecurityCertificateImpl