Reformat sdnr devicemanager to ONAP code style
[ccsdk/features.git] / sdnr / wt / devicemanager / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / impl / ProviderClient.java
index 0086bc7..82519e4 100644 (file)
@@ -21,19 +21,22 @@ import org.onap.ccsdk.features.sdnr.wt.devicemanager.impl.xml.ProblemNotificatio
 
 public interface ProviderClient extends AutoCloseable {
 
-       /**
-        * Send out problem notification, that was created by a device/ or NE
-        * @param mountPointName related
-        * @param notification xml description
-        */
+    /**
+     * Send out problem notification, that was created by a device/ or NE
+     * 
+     * @param mountPointName related
+     * @param notification xml description
+     */
     public void sendProblemNotification(String mountPointName, ProblemNotificationXml notification);
 
-       /**
-        * Send out problem notification
-        * @param mountPointName related
-        * @param notification xml description
-        * @param neDeviceAlarm  true indicates an NE originated alarm, false an sdncontroller generated alarm
-        */
-       public void sendProblemNotification(String mountPointName, ProblemNotificationXml notification, boolean neDeviceAlarm);
+    /**
+     * Send out problem notification
+     * 
+     * @param mountPointName related
+     * @param notification xml description
+     * @param neDeviceAlarm true indicates an NE originated alarm, false an sdncontroller generated alarm
+     */
+    public void sendProblemNotification(String mountPointName, ProblemNotificationXml notification,
+            boolean neDeviceAlarm);
 
 }