Fix java check style warning
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / onap / msb / apiroute / wrapper / dao / service / ServiceDAOImpl.java
index 9ed0455..950963b 100644 (file)
@@ -1,22 +1,18 @@
 /*******************************************************************************
  * Copyright 2016-2017 ZTE, Inc. and others.
  * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License. You may obtain a copy of the License at
  * 
- *      http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
  * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
  ******************************************************************************/
 package org.onap.msb.apiroute.wrapper.dao.service;
 
-import com.fasterxml.jackson.core.JsonProcessingException;
-
 import java.io.IOException;
 import java.util.ArrayList;
 import java.util.List;
@@ -25,13 +21,15 @@ import org.onap.msb.apiroute.wrapper.dao.RedisAccessWrapper;
 import org.onap.msb.apiroute.wrapper.dao.service.bean.ServiceInfo;
 import org.onap.msb.apiroute.wrapper.util.Jackson;
 
-public class ServiceDAOImpl implements  IServiceDAO{
+import com.fasterxml.jackson.core.JsonProcessingException;
+
+public class ServiceDAOImpl implements IServiceDAO {
     public void saveService(String key, ServiceInfo serviceInfo) throws Exception {
         String serviceInfoStr = null;
         try {
             serviceInfoStr = Jackson.MAPPER.writeValueAsString(serviceInfo);
         } catch (JsonProcessingException e) {
-            throw new Exception("error occurred while parsing ServiceInfo to json data",e);
+            throw new Exception("error occurred while parsing ServiceInfo to json data", e);
         }
         RedisAccessWrapper.save(key, serviceInfoStr);
     }
@@ -44,7 +42,7 @@ public class ServiceDAOImpl implements  IServiceDAO{
         try {
             serviceInfo = Jackson.MAPPER.readValue(serviceInfoStr, ServiceInfo.class);
         } catch (IOException e) {
-            throw new Exception("error occurred while parsing the redis json data to ServiceInfo",e);
+            throw new Exception("error occurred while parsing the redis json data to ServiceInfo", e);
         }
         return serviceInfo;
     }
@@ -58,7 +56,7 @@ public class ServiceDAOImpl implements  IServiceDAO{
                 serviceInfo = Jackson.MAPPER.readValue(serviceInfoStr, ServiceInfo.class);
                 routeInfoList.add(serviceInfo);
             } catch (IOException e) {
-                throw new Exception("error occurred while parsing the redis json data to ServiceInfo",e);
+                throw new Exception("error occurred while parsing the redis json data to ServiceInfo", e);
             }
         }
         return routeInfoList;
@@ -68,7 +66,7 @@ public class ServiceDAOImpl implements  IServiceDAO{
         return RedisAccessWrapper.delete(key);
     }
 
-    public long deleteMultiService(String keyPattern) throws Exception{
+    public long deleteMultiService(String keyPattern) throws Exception {
         return RedisAccessWrapper.deleteMultiKeys(keyPattern);
     }
 }