blob: 7c7b0e59d3a1124b5090f3a1e783b390bc70dffd [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
Jonathan Hartbb782be2017-02-09 17:45:49 -08002 * Copyright 2017-present Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska781d18b2014-10-27 10:31:25 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070015 */
Jonathan Hartbb782be2017-02-09 17:45:49 -080016
Jonathan Hart2da1e602015-02-18 19:09:24 -080017package org.onosproject.routing.config;
Jonathan Hartdc711bd2014-10-15 11:24:23 -070018
Jonathan Hartdc711bd2014-10-15 11:24:23 -070019/**
Jonathan Hartbb782be2017-02-09 17:45:49 -080020 * Routing configuration service. Going away very soon.
21 *
22 * @deprecated in Junco release
Jonathan Hartdc711bd2014-10-15 11:24:23 -070023 */
Jonathan Hartbb782be2017-02-09 17:45:49 -080024@Deprecated
Jonathan Hart90a02c22015-02-13 11:52:07 -080025public interface RoutingConfigurationService {
26
Pingping Linc9e16bf2015-04-10 14:42:41 -070027 /**
Jonathan Hartbb782be2017-02-09 17:45:49 -080028 * Empty method to pacify checkstyle.
Pingping Linc9e16bf2015-04-10 14:42:41 -070029 */
Jonathan Hartbb782be2017-02-09 17:45:49 -080030 default void nothing() {
31 }
Jonathan Hartdc711bd2014-10-15 11:24:23 -070032}