/*- * ============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.sirius.manager.tableTemplate; import org.openecomp.ncomp.core.logs.LogLevel; import org.openecomp.ncomp.core.logs.LogSeverity; /** * * A representation of the model object 'Log Table Template'. * * *

* The following features are supported: *

* * * @see org.openecomp.ncomp.sirius.manager.tableTemplate.TableTemplatePackage#getLogTableTemplate() * @model * @generated */ public interface LogTableTemplate extends AbstractTableTemplate { /** * Returns the value of the 'Min Level' attribute. * The literals are from the enumeration {@link org.openecomp.ncomp.core.logs.LogLevel}. * *

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

* * @return the value of the 'Min Level' attribute. * @see org.openecomp.ncomp.core.logs.LogLevel * @see #setMinLevel(LogLevel) * @see org.openecomp.ncomp.sirius.manager.tableTemplate.TableTemplatePackage#getLogTableTemplate_MinLevel() * @model unique="false" * @generated */ LogLevel getMinLevel(); /** * Sets the value of the '{@link org.openecomp.ncomp.sirius.manager.tableTemplate.LogTableTemplate#getMinLevel Min Level}' attribute. * * * @param value the new value of the 'Min Level' attribute. * @see org.openecomp.ncomp.core.logs.LogLevel * @see #getMinLevel() * @generated */ void setMinLevel(LogLevel value); /** * Returns the value of the 'Min Severity' attribute. * The literals are from the enumeration {@link org.openecomp.ncomp.core.logs.LogSeverity}. * *

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

* * @return the value of the 'Min Severity' attribute. * @see org.openecomp.ncomp.core.logs.LogSeverity * @see #setMinSeverity(LogSeverity) * @see org.openecomp.ncomp.sirius.manager.tableTemplate.TableTemplatePackage#getLogTableTemplate_MinSeverity() * @model unique="false" * @generated */ LogSeverity getMinSeverity(); /** * Sets the value of the '{@link org.openecomp.ncomp.sirius.manager.tableTemplate.LogTableTemplate#getMinSeverity Min Severity}' attribute. * * * @param value the new value of the 'Min Severity' attribute. * @see org.openecomp.ncomp.core.logs.LogSeverity * @see #getMinSeverity() * @generated */ void setMinSeverity(LogSeverity value); /** * Returns the value of the 'Prefix Resource Path' attribute. * *

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

* * @return the value of the 'Prefix Resource Path' attribute. * @see #setPrefixResourcePath(String) * @see org.openecomp.ncomp.sirius.manager.tableTemplate.TableTemplatePackage#getLogTableTemplate_PrefixResourcePath() * @model unique="false" * @generated */ String getPrefixResourcePath(); /** * Sets the value of the '{@link org.openecomp.ncomp.sirius.manager.tableTemplate.LogTableTemplate#getPrefixResourcePath Prefix Resource Path}' attribute. * * * @param value the new value of the 'Prefix Resource Path' attribute. * @see #getPrefixResourcePath() * @generated */ void setPrefixResourcePath(String value); /** * Returns the value of the 'Duration' attribute. * *

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

* * @return the value of the 'Duration' attribute. * @see #setDuration(String) * @see org.openecomp.ncomp.sirius.manager.tableTemplate.TableTemplatePackage#getLogTableTemplate_Duration() * @model unique="false" * @generated */ String getDuration(); /** * Sets the value of the '{@link org.openecomp.ncomp.sirius.manager.tableTemplate.LogTableTemplate#getDuration Duration}' attribute. * * * @param value the new value of the 'Duration' attribute. * @see #getDuration() * @generated */ void setDuration(String value); /** * Returns the value of the 'Aggregation Duration' attribute. * *

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

* * @return the value of the 'Aggregation Duration' attribute. * @see #setAggregationDuration(String) * @see org.openecomp.ncomp.sirius.manager.tableTemplate.TableTemplatePackage#getLogTableTemplate_AggregationDuration() * @model unique="false" * @generated */ String getAggregationDuration(); /** * Sets the value of the '{@link org.openecomp.ncomp.sirius.manager.tableTemplate.LogTableTemplate#getAggregationDuration Aggregation Duration}' attribute. * * * @param value the new value of the 'Aggregation Duration' attribute. * @see #getAggregationDuration() * @generated */ void setAggregationDuration(String value); } // LogTableTemplate