Package org.onosproject.net.intf
Interface InterfaceAdminService
-
public interface InterfaceAdminService
Provides a means to modify the interfaces configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(Interface intf)
Adds a new interface configuration to the system.boolean
remove(ConnectPoint connectPoint, java.lang.String name)
Removes an interface configuration from the system.
-
-
-
Method Detail
-
add
void add(Interface intf)
Adds a new interface configuration to the system.- Parameters:
intf
- interface to add
-
remove
boolean remove(ConnectPoint connectPoint, java.lang.String name)
Removes an interface configuration from the system.- Parameters:
connectPoint
- connect point of the interfacename
- name of the interface- Returns:
- the result of removal
-
-