/*- * ============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; import org.openecomp.ncomp.core.NamedEntity; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Container Options'. * * *

* The following features are supported: *

*

* * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions() * @model * @generated */ public interface ContainerOptions extends NamedEntity { /** * Returns the value of the 'Image Nm' attribute. * *

* If the meaning of the 'Image Nm' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Image Nm' attribute. * @see #setImageNm(String) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions_ImageNm() * @model unique="false" * @generated */ String getImageNm(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerOptions#getImageNm Image Nm}' attribute. * * * @param value the new value of the 'Image Nm' attribute. * @see #getImageNm() * @generated */ void setImageNm(String value); /** * Returns the value of the 'Env' attribute list. * The list contents are of type {@link java.lang.String}. * *

* If the meaning of the 'Env' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Env' attribute list. * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions_Env() * @model unique="false" * @generated */ EList getEnv(); /** * Returns the value of the 'Volumes' attribute list. * The list contents are of type {@link java.lang.String}. * *

* If the meaning of the 'Volumes' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Volumes' attribute list. * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions_Volumes() * @model unique="false" * @generated */ EList getVolumes(); /** * Returns the value of the 'Links' attribute list. * The list contents are of type {@link java.lang.String}. * *

* If the meaning of the 'Links' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Links' attribute list. * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions_Links() * @model unique="false" * @generated */ EList getLinks(); /** * Returns the value of the 'Set Container Name' attribute. * *

* If the meaning of the 'Set Container Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Set Container Name' attribute. * @see #setSetContainerName(boolean) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions_SetContainerName() * @model unique="false" * @generated */ boolean isSetContainerName(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerOptions#isSetContainerName Set Container Name}' attribute. * * * @param value the new value of the 'Set Container Name' attribute. * @see #isSetContainerName() * @generated */ void setSetContainerName(boolean value); /** * Returns the value of the 'Publish All Ports' attribute. * *

* If the meaning of the 'Publish All Ports' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Publish All Ports' attribute. * @see #setPublishAllPorts(boolean) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions_PublishAllPorts() * @model unique="false" * @generated */ boolean isPublishAllPorts(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerOptions#isPublishAllPorts Publish All Ports}' attribute. * * * @param value the new value of the 'Publish All Ports' attribute. * @see #isPublishAllPorts() * @generated */ void setPublishAllPorts(boolean value); /** * Returns the value of the 'Port Bindings' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.docker.ContainerPortBindings}. * *

* If the meaning of the 'Port Bindings' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Port Bindings' containment reference list. * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions_PortBindings() * @model containment="true" * @generated */ EList getPortBindings(); /** * Returns the value of the 'Auto Restart' containment reference. * *

* If the meaning of the 'Auto Restart' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Auto Restart' containment reference. * @see #setAutoRestart(ContainerRestartPolicy) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerOptions_AutoRestart() * @model containment="true" * @generated */ ContainerRestartPolicy getAutoRestart(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerOptions#getAutoRestart Auto Restart}' containment reference. * * * @param value the new value of the 'Auto Restart' containment reference. * @see #getAutoRestart() * @generated */ void setAutoRestart(ContainerRestartPolicy value); } // ContainerOptions