From 9a98a583855c9665c7171ca2e44e311095cdaac1 Mon Sep 17 00:00:00 2001 From: lj1412 Date: Tue, 14 Feb 2017 15:11:24 +0000 Subject: Init ncomp.docker Change-Id: Ic87bcf77cff63ef6cd3004fbff9a69f11930d684 Signed-off-by: lj1412 --- .../ncomp/docker/impl/ContainerOptionsImpl.java | 521 +++++++++++++++++++++ 1 file changed, 521 insertions(+) create mode 100644 ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/impl/ContainerOptionsImpl.java (limited to 'ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/impl/ContainerOptionsImpl.java') diff --git a/ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/impl/ContainerOptionsImpl.java b/ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/impl/ContainerOptionsImpl.java new file mode 100644 index 0000000..f4cac7f --- /dev/null +++ b/ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/impl/ContainerOptionsImpl.java @@ -0,0 +1,521 @@ + +/*- + * ============LICENSE_START========================================== + * OPENECOMP - DCAE + * =================================================================== + * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. + * =================================================================== + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END============================================ + */ + +/** + */ +package org.openecomp.ncomp.docker.impl; + +import org.openecomp.ncomp.core.impl.NamedEntityImpl; +import org.openecomp.ncomp.docker.ContainerOptions; +import org.openecomp.ncomp.docker.ContainerPortBindings; +import org.openecomp.ncomp.docker.ContainerRestartPolicy; +import org.openecomp.ncomp.docker.DockerPackage; +import java.util.Collection; +import org.eclipse.emf.common.notify.Notification; +import org.eclipse.emf.common.notify.NotificationChain; +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.InternalEObject; +import org.eclipse.emf.ecore.impl.ENotificationImpl; +import org.eclipse.emf.ecore.util.EDataTypeEList; +import org.eclipse.emf.ecore.util.EObjectContainmentEList; +import org.eclipse.emf.ecore.util.InternalEList; + +/** + * + * An implementation of the model object 'Container Options'. + * + *

+ * The following features are implemented: + *

+ *

+ * + * @generated + */ +public class ContainerOptionsImpl extends NamedEntityImpl implements ContainerOptions { + /** + * The default value of the '{@link #getImageNm() Image Nm}' attribute. + * + * + * @see #getImageNm() + * @generated + * @ordered + */ + protected static final String IMAGE_NM_EDEFAULT = null; + + /** + * The cached value of the '{@link #getImageNm() Image Nm}' attribute. + * + * + * @see #getImageNm() + * @generated + * @ordered + */ + protected String imageNm = IMAGE_NM_EDEFAULT; + + /** + * The cached value of the '{@link #getEnv() Env}' attribute list. + * + * + * @see #getEnv() + * @generated + * @ordered + */ + protected EList env; + + /** + * The cached value of the '{@link #getVolumes() Volumes}' attribute list. + * + * + * @see #getVolumes() + * @generated + * @ordered + */ + protected EList volumes; + + /** + * The cached value of the '{@link #getLinks() Links}' attribute list. + * + * + * @see #getLinks() + * @generated + * @ordered + */ + protected EList links; + + /** + * The default value of the '{@link #isSetContainerName() Set Container Name}' attribute. + * + * + * @see #isSetContainerName() + * @generated + * @ordered + */ + protected static final boolean SET_CONTAINER_NAME_EDEFAULT = false; + + /** + * The cached value of the '{@link #isSetContainerName() Set Container Name}' attribute. + * + * + * @see #isSetContainerName() + * @generated + * @ordered + */ + protected boolean setContainerName = SET_CONTAINER_NAME_EDEFAULT; + + /** + * The default value of the '{@link #isPublishAllPorts() Publish All Ports}' attribute. + * + * + * @see #isPublishAllPorts() + * @generated + * @ordered + */ + protected static final boolean PUBLISH_ALL_PORTS_EDEFAULT = false; + + /** + * The cached value of the '{@link #isPublishAllPorts() Publish All Ports}' attribute. + * + * + * @see #isPublishAllPorts() + * @generated + * @ordered + */ + protected boolean publishAllPorts = PUBLISH_ALL_PORTS_EDEFAULT; + + /** + * The cached value of the '{@link #getPortBindings() Port Bindings}' containment reference list. + * + * + * @see #getPortBindings() + * @generated + * @ordered + */ + protected EList portBindings; + + /** + * The cached value of the '{@link #getAutoRestart() Auto Restart}' containment reference. + * + * + * @see #getAutoRestart() + * @generated + * @ordered + */ + protected ContainerRestartPolicy autoRestart; + + /** + * + * + * @generated + */ + protected ContainerOptionsImpl() { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() { + return DockerPackage.Literals.CONTAINER_OPTIONS; + } + + /** + * + * + * @generated + */ + public String getImageNm() { + return imageNm; + } + + /** + * + * + * @generated + */ + public void setImageNm(String newImageNm) { + String oldImageNm = imageNm; + imageNm = newImageNm; + if (eNotificationRequired()) + eNotify(new ENotificationImpl(this, Notification.SET, DockerPackage.CONTAINER_OPTIONS__IMAGE_NM, oldImageNm, imageNm)); + } + + /** + * + * + * @generated + */ + public EList getEnv() { + if (env == null) { + env = new EDataTypeEList(String.class, this, DockerPackage.CONTAINER_OPTIONS__ENV); + } + return env; + } + + /** + * + * + * @generated + */ + public EList getVolumes() { + if (volumes == null) { + volumes = new EDataTypeEList(String.class, this, DockerPackage.CONTAINER_OPTIONS__VOLUMES); + } + return volumes; + } + + /** + * + * + * @generated + */ + public EList getLinks() { + if (links == null) { + links = new EDataTypeEList(String.class, this, DockerPackage.CONTAINER_OPTIONS__LINKS); + } + return links; + } + + /** + * + * + * @generated + */ + public boolean isSetContainerName() { + return setContainerName; + } + + /** + * + * + * @generated + */ + public void setSetContainerName(boolean newSetContainerName) { + boolean oldSetContainerName = setContainerName; + setContainerName = newSetContainerName; + if (eNotificationRequired()) + eNotify(new ENotificationImpl(this, Notification.SET, DockerPackage.CONTAINER_OPTIONS__SET_CONTAINER_NAME, oldSetContainerName, setContainerName)); + } + + /** + * + * + * @generated + */ + public boolean isPublishAllPorts() { + return publishAllPorts; + } + + /** + * + * + * @generated + */ + public void setPublishAllPorts(boolean newPublishAllPorts) { + boolean oldPublishAllPorts = publishAllPorts; + publishAllPorts = newPublishAllPorts; + if (eNotificationRequired()) + eNotify(new ENotificationImpl(this, Notification.SET, DockerPackage.CONTAINER_OPTIONS__PUBLISH_ALL_PORTS, oldPublishAllPorts, publishAllPorts)); + } + + /** + * + * + * @generated + */ + public EList getPortBindings() { + if (portBindings == null) { + portBindings = new EObjectContainmentEList(ContainerPortBindings.class, this, DockerPackage.CONTAINER_OPTIONS__PORT_BINDINGS); + } + return portBindings; + } + + /** + * + * + * @generated + */ + public ContainerRestartPolicy getAutoRestart() { + return autoRestart; + } + + /** + * + * + * @generated + */ + public NotificationChain basicSetAutoRestart(ContainerRestartPolicy newAutoRestart, NotificationChain msgs) { + ContainerRestartPolicy oldAutoRestart = autoRestart; + autoRestart = newAutoRestart; + if (eNotificationRequired()) { + ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART, oldAutoRestart, newAutoRestart); + if (msgs == null) msgs = notification; else msgs.add(notification); + } + return msgs; + } + + /** + * + * + * @generated + */ + public void setAutoRestart(ContainerRestartPolicy newAutoRestart) { + if (newAutoRestart != autoRestart) { + NotificationChain msgs = null; + if (autoRestart != null) + msgs = ((InternalEObject)autoRestart).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART, null, msgs); + if (newAutoRestart != null) + msgs = ((InternalEObject)newAutoRestart).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART, null, msgs); + msgs = basicSetAutoRestart(newAutoRestart, msgs); + if (msgs != null) msgs.dispatch(); + } + else if (eNotificationRequired()) + eNotify(new ENotificationImpl(this, Notification.SET, DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART, newAutoRestart, newAutoRestart)); + } + + /** + * + * + * @generated + */ + @Override + public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { + switch (featureID) { + case DockerPackage.CONTAINER_OPTIONS__PORT_BINDINGS: + return ((InternalEList)getPortBindings()).basicRemove(otherEnd, msgs); + case DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART: + return basicSetAutoRestart(null, msgs); + } + return super.eInverseRemove(otherEnd, featureID, msgs); + } + + /** + * + * + * @generated + */ + @Override + public Object eGet(int featureID, boolean resolve, boolean coreType) { + switch (featureID) { + case DockerPackage.CONTAINER_OPTIONS__IMAGE_NM: + return getImageNm(); + case DockerPackage.CONTAINER_OPTIONS__ENV: + return getEnv(); + case DockerPackage.CONTAINER_OPTIONS__VOLUMES: + return getVolumes(); + case DockerPackage.CONTAINER_OPTIONS__LINKS: + return getLinks(); + case DockerPackage.CONTAINER_OPTIONS__SET_CONTAINER_NAME: + return isSetContainerName(); + case DockerPackage.CONTAINER_OPTIONS__PUBLISH_ALL_PORTS: + return isPublishAllPorts(); + case DockerPackage.CONTAINER_OPTIONS__PORT_BINDINGS: + return getPortBindings(); + case DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART: + return getAutoRestart(); + } + return super.eGet(featureID, resolve, coreType); + } + + /** + * + * + * @generated + */ + @SuppressWarnings("unchecked") + @Override + public void eSet(int featureID, Object newValue) { + switch (featureID) { + case DockerPackage.CONTAINER_OPTIONS__IMAGE_NM: + setImageNm((String)newValue); + return; + case DockerPackage.CONTAINER_OPTIONS__ENV: + getEnv().clear(); + getEnv().addAll((Collection)newValue); + return; + case DockerPackage.CONTAINER_OPTIONS__VOLUMES: + getVolumes().clear(); + getVolumes().addAll((Collection)newValue); + return; + case DockerPackage.CONTAINER_OPTIONS__LINKS: + getLinks().clear(); + getLinks().addAll((Collection)newValue); + return; + case DockerPackage.CONTAINER_OPTIONS__SET_CONTAINER_NAME: + setSetContainerName((Boolean)newValue); + return; + case DockerPackage.CONTAINER_OPTIONS__PUBLISH_ALL_PORTS: + setPublishAllPorts((Boolean)newValue); + return; + case DockerPackage.CONTAINER_OPTIONS__PORT_BINDINGS: + getPortBindings().clear(); + getPortBindings().addAll((Collection)newValue); + return; + case DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART: + setAutoRestart((ContainerRestartPolicy)newValue); + return; + } + super.eSet(featureID, newValue); + } + + /** + * + * + * @generated + */ + @Override + public void eUnset(int featureID) { + switch (featureID) { + case DockerPackage.CONTAINER_OPTIONS__IMAGE_NM: + setImageNm(IMAGE_NM_EDEFAULT); + return; + case DockerPackage.CONTAINER_OPTIONS__ENV: + getEnv().clear(); + return; + case DockerPackage.CONTAINER_OPTIONS__VOLUMES: + getVolumes().clear(); + return; + case DockerPackage.CONTAINER_OPTIONS__LINKS: + getLinks().clear(); + return; + case DockerPackage.CONTAINER_OPTIONS__SET_CONTAINER_NAME: + setSetContainerName(SET_CONTAINER_NAME_EDEFAULT); + return; + case DockerPackage.CONTAINER_OPTIONS__PUBLISH_ALL_PORTS: + setPublishAllPorts(PUBLISH_ALL_PORTS_EDEFAULT); + return; + case DockerPackage.CONTAINER_OPTIONS__PORT_BINDINGS: + getPortBindings().clear(); + return; + case DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART: + setAutoRestart((ContainerRestartPolicy)null); + return; + } + super.eUnset(featureID); + } + + /** + * + * + * @generated + */ + @Override + public boolean eIsSet(int featureID) { + switch (featureID) { + case DockerPackage.CONTAINER_OPTIONS__IMAGE_NM: + return IMAGE_NM_EDEFAULT == null ? imageNm != null : !IMAGE_NM_EDEFAULT.equals(imageNm); + case DockerPackage.CONTAINER_OPTIONS__ENV: + return env != null && !env.isEmpty(); + case DockerPackage.CONTAINER_OPTIONS__VOLUMES: + return volumes != null && !volumes.isEmpty(); + case DockerPackage.CONTAINER_OPTIONS__LINKS: + return links != null && !links.isEmpty(); + case DockerPackage.CONTAINER_OPTIONS__SET_CONTAINER_NAME: + return setContainerName != SET_CONTAINER_NAME_EDEFAULT; + case DockerPackage.CONTAINER_OPTIONS__PUBLISH_ALL_PORTS: + return publishAllPorts != PUBLISH_ALL_PORTS_EDEFAULT; + case DockerPackage.CONTAINER_OPTIONS__PORT_BINDINGS: + return portBindings != null && !portBindings.isEmpty(); + case DockerPackage.CONTAINER_OPTIONS__AUTO_RESTART: + return autoRestart != null; + } + return super.eIsSet(featureID); + } + + /** + * + * + * @generated + */ + @Override + public String toString() { + if (eIsProxy()) return super.toString(); + + StringBuffer result = new StringBuffer(super.toString()); + result.append(" (imageNm: "); + result.append(imageNm); + result.append(", env: "); + result.append(env); + result.append(", volumes: "); + result.append(volumes); + result.append(", links: "); + result.append(links); + result.append(", setContainerName: "); + result.append(setContainerName); + result.append(", publishAllPorts: "); + result.append(publishAllPorts); + result.append(')'); + return result.toString(); + } + +} //ContainerOptionsImpl -- cgit 1.2.3-korg