blob: 3ac63eee2d88db4f94494ead388061a3802a3274 [file] [log] [blame]
Gaurav Agrawalb102b012016-08-02 12:52:48 +05301/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.yms.ydt;
18
19/**
20 * Abstraction of an entity which represents YANG management system operation
21 * result. Once the protocol translates the request information into a abstract
22 * YANG data tree, it uses YANG management system as a broker to get the
23 * operation executed in ONOS. Protocols uses a request Yang management
24 * system to delegate the operation request.
25 *
26 * YANG management system is responsible to split the protocol operation
27 * across application(s) which needs to participate, and collate the
28 * response(s) from application(s) and return an effective result of the
29 * operation request. The result of the operation request is returned in
30 * YMS operation result.
31 */
32public interface YmsOperationExecutionStatus {
33 // TODO
34}