/*- * ============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.openstack.neutron; /** * * A representation of the model object 'Create Network Request'. * * *

* The following features are supported: *

* * * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateNetworkRequest() * @model * @generated */ public interface CreateNetworkRequest extends NeutronRequest { /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateNetworkRequest_Name() * @model unique="false" * @generated */ String getName(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateNetworkRequest#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Provider Network Type' attribute. * *

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

* * @return the value of the 'Provider Network Type' attribute. * @see #setProviderNetworkType(String) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateNetworkRequest_ProviderNetworkType() * @model unique="false" * annotation="http://openecomp.org/sirius/openstack name='provider:network_type'" * @generated */ String getProviderNetworkType(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateNetworkRequest#getProviderNetworkType Provider Network Type}' attribute. * * * @param value the new value of the 'Provider Network Type' attribute. * @see #getProviderNetworkType() * @generated */ void setProviderNetworkType(String value); /** * Returns the value of the 'Provider Physical Network' attribute. * *

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

* * @return the value of the 'Provider Physical Network' attribute. * @see #setProviderPhysicalNetwork(String) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateNetworkRequest_ProviderPhysicalNetwork() * @model unique="false" * annotation="http://openecomp.org/sirius/openstack name='provider:physical_network'" * @generated */ String getProviderPhysicalNetwork(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateNetworkRequest#getProviderPhysicalNetwork Provider Physical Network}' attribute. * * * @param value the new value of the 'Provider Physical Network' attribute. * @see #getProviderPhysicalNetwork() * @generated */ void setProviderPhysicalNetwork(String value); /** * Returns the value of the 'Provider Segmentation Id' attribute. * *

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

* * @return the value of the 'Provider Segmentation Id' attribute. * @see #setProviderSegmentationId(int) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateNetworkRequest_ProviderSegmentationId() * @model unique="false" * annotation="http://openecomp.org/sirius/openstack name='provider:segmentation_id'" * @generated */ int getProviderSegmentationId(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateNetworkRequest#getProviderSegmentationId Provider Segmentation Id}' attribute. * * * @param value the new value of the 'Provider Segmentation Id' attribute. * @see #getProviderSegmentationId() * @generated */ void setProviderSegmentationId(int value); /** * Returns the value of the 'Admin state up' attribute. * *

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

* * @return the value of the 'Admin state up' attribute. * @see #setAdmin_state_up(Boolean) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateNetworkRequest_Admin_state_up() * @model unique="false" * @generated */ Boolean getAdmin_state_up(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateNetworkRequest#getAdmin_state_up Admin state up}' attribute. * * * @param value the new value of the 'Admin state up' attribute. * @see #getAdmin_state_up() * @generated */ void setAdmin_state_up(Boolean value); /** * Returns the value of the 'Shared' attribute. * *

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

* * @return the value of the 'Shared' attribute. * @see #setShared(Boolean) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateNetworkRequest_Shared() * @model unique="false" * @generated */ Boolean getShared(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateNetworkRequest#getShared Shared}' attribute. * * * @param value the new value of the 'Shared' attribute. * @see #getShared() * @generated */ void setShared(Boolean value); } // CreateNetworkRequest