blob: 8fa0ee33a9c89ec627f0e8eb5dc2c28ba55534f3 [file] [log] [blame]
Yuta HIGUCHI8810aa42017-08-02 15:05:37 -07001/*
2 * Copyright 2017-present Open Networking Foundation
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 */
16package org.onosproject.d.config.sync;
17
18import org.onosproject.net.provider.ProviderService;
19
20import com.google.common.annotations.Beta;
21
22/**
23 * Service which configuration synchronization provider can interact
24 * with the service.
25 * <p>
26 * Provides a mean to propagate device triggered change event upward to
27 * dynamic config subsystem.
28 */
29@Beta
30public interface DeviceConfigSynchronizationProviderService
31 extends ProviderService<DeviceConfigSynchronizationProvider> {
32
33 // TODO API to propagate device detected change upwards
34 // e.g., in reaction to NETCONF async notification,
35 // report polling result up to DynConfig subsystem
36}