Capabilities check to include both namespace and revision
[ccsdk/features.git] / sdnr / wt / netconfnode-state-service / model / src / main / java / org / onap / ccsdk / features / sdnr / wt / netconfnodestateservice / NetconfNodeStateService.java
index 0105c36..4e82b3d 100644 (file)
@@ -1,4 +1,4 @@
-/*******************************************************************************
+/*
  * ============LICENSE_START========================================================================
  * ONAP : ccsdk feature sdnr wt
  * =================================================================================================
@@ -14,7 +14,7 @@
  * or implied. See the License for the specific language governing permissions and limitations under
  * the License.
  * ============LICENSE_END==========================================================================
- ******************************************************************************/
+ */
 
 package org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice;
 
@@ -26,23 +26,32 @@ public interface NetconfNodeStateService extends Registration {
 
     /**
      * Register for indication that Master NetconNode is entering or leaving Connected state.
+     * 
      * @param netconfNodeConnectListener
      * @return managing object for listener
      */
-    @NonNull <L extends NetconfNodeConnectListener> ListenerRegistration<L> registerNetconfNodeConnectListener(@NonNull L netconfNodeConnectListener);
+    @NonNull
+    <L extends NetconfNodeConnectListener> ListenerRegistration<L> registerNetconfNodeConnectListener(
+            @NonNull L netconfNodeConnectListener);
 
     /**
      * Register for all NetconfNode specific state changes
+     * 
      * @param netconfNodeStateListener
      * @return managing object for listener
      */
-    @NonNull <L extends NetconfNodeStateListener> ListenerRegistration<L> registerNetconfNodeStateListener(@NonNull L netconfNodeStateListener);
+    @NonNull
+    <L extends NetconfNodeStateListener> ListenerRegistration<L> registerNetconfNodeStateListener(
+            @NonNull L netconfNodeStateListener);
 
     /**
      * Register for Ves/DmaaP provided messages
+     * 
      * @param netconfNodeStateListener
      * @return managing object for listener
      */
-    @NonNull <L extends VesNotificationListener> ListenerRegistration<L> registerVesNotifications(@NonNull L netconfNodeStateListener);
+    @NonNull
+    <L extends VesNotificationListener> ListenerRegistration<L> registerVesNotifications(
+            @NonNull L netconfNodeStateListener);
 
 }