blob: 484616e58f54e8c1b5140d52fd1a74dfcfc9a9ec [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001/**
Ray Milkey5d406012014-04-08 14:44:41 -07002 * Copyright 2011, Big Switch Networks, Inc.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08003 * Originally created by David Erickson, Stanford University
Ray Milkey269ffb92014-04-03 14:43:30 -07004 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08005 * Licensed under the Apache License, Version 2.0 (the "License"); you may
6 * not use this file except in compliance with the License. You may obtain
7 * a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations
15 * under the License.
16 **/
17
Jonathan Hart23701d12014-04-03 10:45:48 -070018package net.onrc.onos.core.linkdiscovery;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080019
Ray Milkey269ffb92014-04-03 14:43:30 -070020public interface ILinkDiscoveryListener extends ILinkDiscovery {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080021
22 public void linkDiscoveryUpdate(LDUpdate update);
23}