blob: 1bfd278c91c58d97cad0c4e00593dda3774d37f9 [file] [log] [blame]
Brian O'Connor7cbbbb72016-04-09 02:13:23 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Brian O'Connor7cbbbb72016-04-09 02:13:23 -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 */
alshabib79e52872015-12-07 16:01:01 -080016package org.onosproject.net.mcast;
17
18
19import org.onosproject.store.StoreDelegate;
20
21/**
22 * Mcast store delegate abstraction.
Ray Milkey50b14582017-08-23 09:55:02 -070023 *
24 * @deprecated in 1.11 ("Loon") release. To be moved into an app.
alshabib79e52872015-12-07 16:01:01 -080025 */
Ray Milkey50b14582017-08-23 09:55:02 -070026
27@Deprecated
alshabib79e52872015-12-07 16:01:01 -080028public interface McastStoreDelegate extends StoreDelegate<McastEvent> {
29}