Interface NetconfOperationServiceFactory
-
public interface NetconfOperationServiceFactoryFactory that must be registered in OSGi service registry in order to be used by netconf-impl. Responsible for creating per-session instances ofNetconfOperationService.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetconfOperationServicecreateService(String netconfSessionIdForReporting)Set<org.opendaylight.netconf.api.capability.Capability>getCapabilities()Get capabilities supported by current operation service.AutoCloseableregisterCapabilityListener(org.opendaylight.netconf.api.monitoring.CapabilityListener listener)Supported capabilities may change over time, registering a listener allows for push based information retrieval about current notifications.
-
-
-
Method Detail
-
getCapabilities
Set<org.opendaylight.netconf.api.capability.Capability> getCapabilities()
Get capabilities supported by current operation service.
-
registerCapabilityListener
AutoCloseable registerCapabilityListener(org.opendaylight.netconf.api.monitoring.CapabilityListener listener)
Supported capabilities may change over time, registering a listener allows for push based information retrieval about current notifications.
-
createService
NetconfOperationService createService(String netconfSessionIdForReporting)
-
-