blob: 9b3ba3f2827d662a5055785a5658f233f22c776b [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 {
20 /**
21 * Get the application's error message for data error.
22 *
23 * @return application's error message for data error.
24 */
25 String getGetErrorMessage();
26
27 /**
28 * Set the application's error message for data error.
29 *
30 * @param errorMessage application's error message for data error.
31 */
32 void setErrorMessage(String errorMessage);
33
34 /**
35 * Get the application's error tag for data error.
36 *
37 * @return application's error tag for data error.
38 */
39 String getGetErrorAppTag();
40
41 /**
42 * Set the application's error tag for data error.
43 *
44 * @param errorMessage application's error tag for data error.
45 */
46 void setErrorAppTag(String errorMessage);
47}