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/DockerNetworkContainer.java | 179 +++++++++++++++++++++ 1 file changed, 179 insertions(+) create mode 100644 ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/DockerNetworkContainer.java (limited to 'ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/DockerNetworkContainer.java') diff --git a/ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/DockerNetworkContainer.java b/ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/DockerNetworkContainer.java new file mode 100644 index 0000000..e61d610 --- /dev/null +++ b/ncomp-docker-model/src/main/xcore-gen/org/openecomp/ncomp/docker/DockerNetworkContainer.java @@ -0,0 +1,179 @@ + +/*- + * ============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 -- cgit 1.2.3-korg