blob: ac9e54611ee82e128fd6902f9fb608817c9d8112 [file] [log] [blame]
Ayaka Koshibee39c23a2015-08-03 18:17:43 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Ayaka Koshibee39c23a2015-08-03 18:17:43 -07003 *
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 */
Ray Milkeya4122362015-08-18 15:19:08 -070016package org.onosproject.net.config;
Ayaka Koshibee39c23a2015-08-03 18:17:43 -070017
18/**
19 * An interface signifying a class that implements network configuration
20 * information from multiple sources. There is a natural ordering to the
21 * precedence of information, depending on its source:
22 * <ol>
23 * <li>Intents (from applications), which override</li>
24 * <li>Configs (from the network configuration subsystem), which override</li>
25 * <li>Descriptions (from southbound)</li>
26 * </ol>
27 * i.e., for a field representing the same attribute, the value from a Config
28 * entity will be used over that from the Description.
29 */
30public interface ConfigOperator {
Ray Milkeya4122362015-08-18 15:19:08 -070031}