/*- * ============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.cdap; import org.openecomp.ncomp.core.NamedEntity; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Cluster'. * * *

* The following features are supported: *

*

* * @see org.openecomp.ncomp.cdap.CdapPackage#getCdapCluster() * @model * @generated */ public interface CdapCluster extends NamedEntity, CdapApi { /** * Returns the value of the 'Base Url' attribute. * *

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

* * @return the value of the 'Base Url' attribute. * @see #setBaseUrl(String) * @see org.openecomp.ncomp.cdap.CdapPackage#getCdapCluster_BaseUrl() * @model unique="false" * @generated */ String getBaseUrl(); /** * Sets the value of the '{@link org.openecomp.ncomp.cdap.CdapCluster#getBaseUrl Base Url}' attribute. * * * @param value the new value of the 'Base Url' attribute. * @see #getBaseUrl() * @generated */ void setBaseUrl(String value); /** * Returns the value of the 'Polling Frequency' attribute. * The default value is "300000". * *

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

* * @return the value of the 'Polling Frequency' attribute. * @see #setPollingFrequency(long) * @see org.openecomp.ncomp.cdap.CdapPackage#getCdapCluster_PollingFrequency() * @model default="300000" unique="false" * @generated */ long getPollingFrequency(); /** * Sets the value of the '{@link org.openecomp.ncomp.cdap.CdapCluster#getPollingFrequency Polling Frequency}' attribute. * * * @param value the new value of the 'Polling Frequency' attribute. * @see #getPollingFrequency() * @generated */ void setPollingFrequency(long value); /** * Returns the value of the 'Remote' attribute. * The default value is "false". * *

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

* * @return the value of the 'Remote' attribute. * @see #setRemote(boolean) * @see org.openecomp.ncomp.cdap.CdapPackage#getCdapCluster_Remote() * @model default="false" unique="false" * @generated */ boolean isRemote(); /** * Sets the value of the '{@link org.openecomp.ncomp.cdap.CdapCluster#isRemote Remote}' attribute. * * * @param value the new value of the 'Remote' attribute. * @see #isRemote() * @generated */ void setRemote(boolean value); /** * Returns the value of the 'Configurations' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.cdap.CdapConfiguration}. * *

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

* * @return the value of the 'Configurations' containment reference list. * @see org.openecomp.ncomp.cdap.CdapPackage#getCdapCluster_Configurations() * @model containment="true" ordered="false" * @generated */ EList getConfigurations(); /** * Returns the value of the 'Namespaces' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.cdap.CdapNamespace}. * It is bidirectional and its opposite is '{@link org.openecomp.ncomp.cdap.CdapNamespace#getCluster Cluster}'. * *

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

* * @return the value of the 'Namespaces' containment reference list. * @see org.openecomp.ncomp.cdap.CdapPackage#getCdapCluster_Namespaces() * @see org.openecomp.ncomp.cdap.CdapNamespace#getCluster * @model opposite="cluster" containment="true" ordered="false" * @generated */ EList getNamespaces(); /** * * * @model * @generated */ void poll(); } // CdapCluster