blob: 8e1f18f4000b57b7dda5e7240211a389b3b1407f [file] [log] [blame]
package org.onlab.onos.net.link;
import org.onlab.onos.net.provider.ProviderService;
/**
* Means for injecting link information into the core.
*/
public interface LinkProviderService extends ProviderService {
/**
* Signals that an infrastructure link has been connected.
*
* @param linkDescription link information
*/
void linkConnected(LinkDescription linkDescription);
/**
* Signals that an infrastructure link has been disconnected.
*
* @param linkDescription link information
*/
void linkDisconnected(LinkDescription linkDescription);
}