Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / utils / E2EServiceUtils.java
index d667ad8..f675428 100644 (file)
@@ -18,14 +18,16 @@ import java.util.Map;
 import org.onap.nbi.apis.serviceorder.model.orchestrator.ServiceOrderItemInfo;
 
 public class E2EServiceUtils {
-       public static boolean isE2EService(ServiceOrderItemInfo serviceOrderItemInfo){
-        Map<String,Object> sdcInfos = serviceOrderItemInfo.getCatalogResponse();
+    public static boolean isE2EService(ServiceOrderItemInfo serviceOrderItemInfo) {
+        Map<String, Object> sdcInfos = serviceOrderItemInfo.getCatalogResponse();
         boolean e2eService = false;
-        if(sdcInfos.get("category")!=null){
-            String category = ((String)sdcInfos.get("category")).toLowerCase();
-            // Until SO comes up with one consolidated API for Service CRUD, ExtAPI has to be handle SO (serviceInstance and e2eServiceInstances )APIs for service CRUD
-            // All E2E Services are required to be created in SDC under category "E2E Services" until SO fixes the multiple API issue.
-            if(category.startsWith("e2e")) {
+        if (sdcInfos.get("category") != null) {
+            String category = ((String) sdcInfos.get("category")).toLowerCase();
+            // Until SO comes up with one consolidated API for Service CRUD, ExtAPI has to be handle SO (serviceInstance
+            // and e2eServiceInstances )APIs for service CRUD
+            // All E2E Services are required to be created in SDC under category "E2E Services" until SO fixes the
+            // multiple API issue.
+            if (category.startsWith("e2e")) {
                 e2eService = true;
             }
         }