blob: 671aa08383f22c03249b836224ebfdca3f023315 [file] [log] [blame]
Vinod Kumar S0c330cd2016-02-23 22:36:57 +05301/*Copyright 2016.year Open Networking Laboratory
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.*/
14package org.onosproject.yangutils.datamodel;
15
16/**
17 * Abstraction of error message and application info processing.
18 */
19public interface YangAppErrorInfo {
Bharat saraswald9822e92016-04-05 15:13:44 +053020
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053021 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053022 * Returns the application's error message for data error.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053023 *
24 * @return application's error message for data error.
25 */
26 String getGetErrorMessage();
27
28 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053029 * Sets the application's error message for data error.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053030 *
31 * @param errorMessage application's error message for data error.
32 */
33 void setErrorMessage(String errorMessage);
34
35 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053036 * Returns the application's error tag for data error.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053037 *
38 * @return application's error tag for data error.
39 */
40 String getGetErrorAppTag();
41
42 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053043 * Sets the application's error tag for data error.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053044 *
45 * @param errorMessage application's error tag for data error.
46 */
47 void setErrorAppTag(String errorMessage);
48}