X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=netconf%2Fnetconf-topology%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Ftopology%2Fapi%2FNetconfConnectorFactory.java;h=0f99262b7069eaa9283e7bb8a69c2cfc267a18de;hb=57d2a366160965279304fbc24df0f946b09ea9ac;hp=632c2f9e597ca13f0f3047ee6b05e32fdc487178;hpb=0daed243d5fa216f5274ad9257f9692dd91c77eb;p=netconf.git diff --git a/netconf/netconf-topology/src/main/java/org/opendaylight/netconf/topology/api/NetconfConnectorFactory.java b/netconf/netconf-topology/src/main/java/org/opendaylight/netconf/topology/api/NetconfConnectorFactory.java index 632c2f9e59..0f99262b70 100644 --- a/netconf/netconf-topology/src/main/java/org/opendaylight/netconf/topology/api/NetconfConnectorFactory.java +++ b/netconf/netconf-topology/src/main/java/org/opendaylight/netconf/topology/api/NetconfConnectorFactory.java @@ -18,9 +18,11 @@ public interface NetconfConnectorFactory { /** * Create a new netconf connector with default values. + * *

- * This method will create a {@link Node} and a {@link NetconfNode} that will be added as an augmentation to the - * {@link Node}. Afterward, that {@link Node} will be written in the MDSAL datastore under the {@link NetconfTopology}. + * This method will create a {@link Node} and a {@link NetconfNode} + * that will be added as an augmentation to the {@link Node}. + * Afterward, that {@link Node} will be written in the MDSAL datastore under the {@link NetconfTopology}. * Listeners of that subtree located within network-topology bundle will setup the session. * * @param dataBroker Instance of the {@link DataBroker} @@ -33,12 +35,12 @@ public interface NetconfConnectorFactory { * @param reconnectOnSchemaChange Whether to enable ietf-netconf-monitoring and register the NETCONF stream. * @return The created {@link Node} */ - Node newInstance(final DataBroker dataBroker, - final String instanceName, - final String address, - final Integer port, - final String username, - final String password, - final Boolean tcpOnly, - final Boolean reconnectOnSchemaChange); + Node newInstance(DataBroker dataBroker, + String instanceName, + String address, + Integer port, + String username, + String password, + Boolean tcpOnly, + Boolean reconnectOnSchemaChange); }