/*- * ============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.dcae.analytics.cdap.common; import org.openecomp.ncomp.core.NamedEntity; /** * * A representation of the model object 'Tca Threshold'. * * *

* The following features are supported: *

*

* * @see org.openecomp.dcae.analytics.cdap.common.CommonPackage#getTcaThreshold() * @model annotation="http://openecomp.org type='configuration'" * @generated */ public interface TcaThreshold extends NamedEntity { /** * Returns the value of the 'Closed Loop Control Name' attribute. * *

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

* * @return the value of the 'Closed Loop Control Name' attribute. * @see #setClosedLoopControlName(String) * @see org.openecomp.dcae.analytics.cdap.common.CommonPackage#getTcaThreshold_ClosedLoopControlName() * @model unique="false" * annotation="http://openecomp.org type='configuration'" * annotation="http://openecomp.org/cdap destination='namespace-prefs:cdap-tca:${path}.policy.closedLoopControlName'" * @generated */ String getClosedLoopControlName(); /** * Sets the value of the '{@link org.openecomp.dcae.analytics.cdap.common.TcaThreshold#getClosedLoopControlName Closed Loop Control Name}' attribute. * * * @param value the new value of the 'Closed Loop Control Name' attribute. * @see #getClosedLoopControlName() * @generated */ void setClosedLoopControlName(String value); /** * Returns the value of the 'Version' attribute. * *

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

* * @return the value of the 'Version' attribute. * @see #setVersion(String) * @see org.openecomp.dcae.analytics.cdap.common.CommonPackage#getTcaThreshold_Version() * @model unique="false" * annotation="http://openecomp.org type='configuration'" * annotation="http://openecomp.org/cdap destination='namespace-prefs:cdap-tca:${path}.policy.version'" * @generated */ String getVersion(); /** * Sets the value of the '{@link org.openecomp.dcae.analytics.cdap.common.TcaThreshold#getVersion Version}' attribute. * * * @param value the new value of the 'Version' attribute. * @see #getVersion() * @generated */ void setVersion(String value); /** * Returns the value of the 'Field Path' attribute. * *

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

* * @return the value of the 'Field Path' attribute. * @see #setFieldPath(String) * @see org.openecomp.dcae.analytics.cdap.common.CommonPackage#getTcaThreshold_FieldPath() * @model unique="false" * annotation="http://openecomp.org type='configuration'" * annotation="http://openecomp.org/cdap destination='namespace-prefs:cdap-tca:${path}.policy.fieldPath'" * @generated */ String getFieldPath(); /** * Sets the value of the '{@link org.openecomp.dcae.analytics.cdap.common.TcaThreshold#getFieldPath Field Path}' attribute. * * * @param value the new value of the 'Field Path' attribute. * @see #getFieldPath() * @generated */ void setFieldPath(String value); /** * Returns the value of the 'Threshold Value' attribute. * *

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

* * @return the value of the 'Threshold Value' attribute. * @see #setThresholdValue(Integer) * @see org.openecomp.dcae.analytics.cdap.common.CommonPackage#getTcaThreshold_ThresholdValue() * @model unique="false" * annotation="http://openecomp.org type='configuration'" * annotation="http://openecomp.org/cdap destination='namespace-prefs:cdap-tca:${path}.policy.thresholdValue'" * @generated */ Integer getThresholdValue(); /** * Sets the value of the '{@link org.openecomp.dcae.analytics.cdap.common.TcaThreshold#getThresholdValue Threshold Value}' attribute. * * * @param value the new value of the 'Threshold Value' attribute. * @see #getThresholdValue() * @generated */ void setThresholdValue(Integer value); /** * Returns the value of the 'Direction' attribute. * *

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

* * @return the value of the 'Direction' attribute. * @see #setDirection(String) * @see org.openecomp.dcae.analytics.cdap.common.CommonPackage#getTcaThreshold_Direction() * @model unique="false" * annotation="http://openecomp.org type='configuration'" * annotation="http://openecomp.org/cdap destination='namespace-prefs:cdap-tca:${path}.policy.direction'" * @generated */ String getDirection(); /** * Sets the value of the '{@link org.openecomp.dcae.analytics.cdap.common.TcaThreshold#getDirection Direction}' attribute. * * * @param value the new value of the 'Direction' attribute. * @see #getDirection() * @generated */ void setDirection(String value); /** * Returns the value of the 'Severity' attribute. * *

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

* * @return the value of the 'Severity' attribute. * @see #setSeverity(String) * @see org.openecomp.dcae.analytics.cdap.common.CommonPackage#getTcaThreshold_Severity() * @model unique="false" * annotation="http://openecomp.org type='configuration'" * annotation="http://openecomp.org/cdap destination='namespace-prefs:cdap-tca:${path}.policy.severity'" * @generated */ String getSeverity(); /** * Sets the value of the '{@link org.openecomp.dcae.analytics.cdap.common.TcaThreshold#getSeverity Severity}' attribute. * * * @param value the new value of the 'Severity' attribute. * @see #getSeverity() * @generated */ void setSeverity(String value); } // TcaThreshold