/*- * ============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.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Network Container'. * * *

* The following features are supported: *

*

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

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

* * @return the value of the 'IPv4 Address' attribute. * @see #setIPv4Address(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerNetworkContainer_IPv4Address() * @model unique="false" * @generated */ String getIPv4Address(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerNetworkContainer#getIPv4Address IPv4 Address}' attribute. * * * @param value the new value of the 'IPv4 Address' attribute. * @see #getIPv4Address() * @generated */ void setIPv4Address(String value); /** * Returns the value of the 'IPv6 Address' attribute. * *

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

* * @return the value of the 'IPv6 Address' attribute. * @see #setIPv6Address(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerNetworkContainer_IPv6Address() * @model unique="false" * @generated */ String getIPv6Address(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerNetworkContainer#getIPv6Address IPv6 Address}' attribute. * * * @param value the new value of the 'IPv6 Address' attribute. * @see #getIPv6Address() * @generated */ void setIPv6Address(String value); /** * Returns the value of the 'Endpoint ID' attribute. * *

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

* * @return the value of the 'Endpoint ID' attribute. * @see #setEndpointID(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerNetworkContainer_EndpointID() * @model unique="false" * @generated */ String getEndpointID(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerNetworkContainer#getEndpointID Endpoint ID}' attribute. * * * @param value the new value of the 'Endpoint ID' attribute. * @see #getEndpointID() * @generated */ void setEndpointID(String value); /** * Returns the value of the 'Mac Address' attribute. * *

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

* * @return the value of the 'Mac Address' attribute. * @see #setMacAddress(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerNetworkContainer_MacAddress() * @model unique="false" * @generated */ String getMacAddress(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerNetworkContainer#getMacAddress Mac Address}' attribute. * * * @param value the new value of the 'Mac Address' attribute. * @see #getMacAddress() * @generated */ void setMacAddress(String value); } // DockerNetworkContainer