blob: 6ff3b5590b49596db052a4c73b4dd8451ad69b8b [file] [log] [blame]
Vinod Kumar Scf044422016-02-09 19:53:45 +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 for status on a YANG entity. Abstracted to unify the parsing and
18 * translator processing of status.
19 */
20public interface YangStatus {
21 /**
22 * Get the status.
23 *
24 * @return the status
25 */
26 YangStatusType getStatus();
27
28 /**
29 * Set the status.
30 *
31 * @param status the status to set
32 */
33 void setStatus(YangStatusType status);
34}