/*- * ============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 java.util.Date; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Image'. * * *

* The following features are supported: *

*

* * @see org.openecomp.ncomp.docker.DockerPackage#getDockerImage() * @model * @generated */ public interface DockerImage 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#getDockerImage_Id() * @model unique="false" * @generated */ String getId(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerImage#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the 'Parent Id' attribute. * *

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

* * @return the value of the 'Parent Id' attribute. * @see #setParentId(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerImage_ParentId() * @model unique="false" * @generated */ String getParentId(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerImage#getParentId Parent Id}' attribute. * * * @param value the new value of the 'Parent Id' attribute. * @see #getParentId() * @generated */ void setParentId(String value); /** * Returns the value of the 'Repo Tags' attribute list. * The list contents are of type {@link java.lang.String}. * *

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

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

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

* * @return the value of the 'Repo Digests' attribute list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerImage_RepoDigests() * @model unique="false" * @generated */ EList getRepoDigests(); /** * 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(Date) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerImage_DockerCreated() * @model unique="false" * @generated */ Date getDockerCreated(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerImage#getDockerCreated Docker Created}' attribute. * * * @param value the new value of the 'Docker Created' attribute. * @see #getDockerCreated() * @generated */ void setDockerCreated(Date value); /** * Returns the value of the 'Size' attribute. * *

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

* * @return the value of the 'Size' attribute. * @see #setSize(Long) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerImage_Size() * @model unique="false" * @generated */ Long getSize(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerImage#getSize Size}' attribute. * * * @param value the new value of the 'Size' attribute. * @see #getSize() * @generated */ void setSize(Long value); /** * Returns the value of the 'Virtual Size' attribute. * *

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

* * @return the value of the 'Virtual Size' attribute. * @see #setVirtualSize(Long) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerImage_VirtualSize() * @model unique="false" * @generated */ Long getVirtualSize(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerImage#getVirtualSize Virtual Size}' attribute. * * * @param value the new value of the 'Virtual Size' attribute. * @see #getVirtualSize() * @generated */ void setVirtualSize(Long value); /** * Returns the value of the 'Labels' attribute list. * The list contents are of type {@link java.lang.String}. * *

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

* * @return the value of the 'Labels' attribute list. * @see org.openecomp.ncomp.docker.DockerPackage#getDockerImage_Labels() * @model unique="false" * @generated */ EList getLabels(); } // DockerImage