/*- * ============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'. * * *

* The following features are supported: *

* * * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer() * @model * @generated */ public interface DockerContainer extends NamedEntity { /** * Returns the value of the 'Id' attribute. * *

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

* * @return the value of the 'Id' attribute. * @see #setId(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Id() * @model unique="false" * @generated */ String getId(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerContainer#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the 'Names' attribute list. * The list contents are of type {@link java.lang.String}. * *

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

* * @return the value of the 'Names' attribute list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Names() * @model unique="false" * @generated */ EList getNames(); /** * Returns the value of the 'Image' attribute. * *

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

* * @return the value of the 'Image' attribute. * @see #setImage(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Image() * @model unique="false" * @generated */ String getImage(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerContainer#getImage Image}' attribute. * * * @param value the new value of the 'Image' attribute. * @see #getImage() * @generated */ void setImage(String value); /** * Returns the value of the 'Image ID' attribute. * *

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

* * @return the value of the 'Image ID' attribute. * @see #setImageID(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_ImageID() * @model unique="false" * @generated */ String getImageID(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerContainer#getImageID Image ID}' attribute. * * * @param value the new value of the 'Image ID' attribute. * @see #getImageID() * @generated */ void setImageID(String value); /** * Returns the value of the 'Command' attribute. * *

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

* * @return the value of the 'Command' attribute. * @see #setCommand(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Command() * @model unique="false" * @generated */ String getCommand(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerContainer#getCommand Command}' attribute. * * * @param value the new value of the 'Command' attribute. * @see #getCommand() * @generated */ void setCommand(String value); /** * Returns the value of the 'Docker Created' attribute. * *

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

* * @return the value of the 'Docker Created' attribute. * @see #setDockerCreated(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_DockerCreated() * @model unique="false" * @generated */ String getDockerCreated(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerContainer#getDockerCreated Docker Created}' attribute. * * * @param value the new value of the 'Docker Created' attribute. * @see #getDockerCreated() * @generated */ void setDockerCreated(String value); /** * Returns the value of the 'Ports' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.docker.DockerPort}. * *

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

* * @return the value of the 'Ports' containment reference list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Ports() * @model containment="true" * @generated */ EList getPorts(); /** * Returns the value of the 'Labels' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.docker.DockerKeyPair}. * *

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

* * @return the value of the 'Labels' containment reference list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Labels() * @model containment="true" * @generated */ EList getLabels(); /** * Returns the value of the 'Status' attribute. * *

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

* * @return the value of the 'Status' attribute. * @see #setStatus(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Status() * @model unique="false" * @generated */ String getStatus(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerContainer#getStatus Status}' attribute. * * * @param value the new value of the 'Status' attribute. * @see #getStatus() * @generated */ void setStatus(String value); /** * Returns the value of the 'Host Config' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.docker.DockerKeyPair}. * *

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

* * @return the value of the 'Host Config' containment reference list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_HostConfig() * @model containment="true" * @generated */ EList getHostConfig(); /** * Returns the value of the 'Processes' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.docker.DockerProcess}. * *

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

* * @return the value of the 'Processes' containment reference list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Processes() * @model containment="true" * @generated */ EList getProcesses(); /** * Returns the value of the 'Mounts' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.docker.DockerMount}. * *

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

* * @return the value of the 'Mounts' containment reference list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Mounts() * @model containment="true" * @generated */ EList getMounts(); /** * Returns the value of the 'Stats' containment reference. * *

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

* * @return the value of the 'Stats' containment reference. * @see #setStats(DockerContainerStats) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Stats() * @model containment="true" * @generated */ DockerContainerStats getStats(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerContainer#getStats Stats}' containment reference. * * * @param value the new value of the 'Stats' containment reference. * @see #getStats() * @generated */ void setStats(DockerContainerStats value); /** * Returns the value of the 'Events' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.docker.DockerEvents}. * *

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

* * @return the value of the 'Events' containment reference list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerContainer_Events() * @model containment="true" * @generated */ EList getEvents(); } // DockerContainer