aboutsummaryrefslogtreecommitdiffstats
path: root/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service
diff options
context:
space:
mode:
Diffstat (limited to 'apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service')
-rw-r--r--apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/ApiRouteService.java50
-rw-r--r--apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/CustomRouteService.java48
-rw-r--r--apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/IuiRouteService.java48
-rw-r--r--apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/MicroServiceFullService.java53
4 files changed, 94 insertions, 105 deletions
diff --git a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/ApiRouteService.java b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/ApiRouteService.java
index bbe5b86..52b8c31 100644
--- a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/ApiRouteService.java
+++ b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/ApiRouteService.java
@@ -1,20 +1,22 @@
/*******************************************************************************
* 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.service;
+import java.util.ArrayList;
+import java.util.Calendar;
+import java.util.List;
+
import org.onap.msb.apiroute.api.ApiRouteInfo;
import org.onap.msb.apiroute.api.RouteServer;
import org.onap.msb.apiroute.wrapper.dao.DAOFactory;
@@ -26,25 +28,20 @@ import org.onap.msb.apiroute.wrapper.dao.route.bean.Spec;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import java.util.ArrayList;
-import java.util.Calendar;
-import java.util.List;
-
public class ApiRouteService {
private static final Logger LOGGER = LoggerFactory.getLogger(ApiRouteService.class);
private static final ApiRouteService instance = new ApiRouteService();
private IRouteDAO routeDAO = DAOFactory.getRouteDAO();
- private ApiRouteService() {
- }
+ private ApiRouteService() {}
public static ApiRouteService getInstance() {
return instance;
}
public void saveApiRouteService2Redis(ApiRouteInfo apiRouteInfo, String routeKey) throws Exception {
- if(apiRouteInfo ==null){
+ if (apiRouteInfo == null) {
throw new Exception("input apiRouteInfo to be saved is null!");
}
RouteInfo routeInfo = APIRouteAdapter.toRouteInfo(apiRouteInfo);
@@ -63,7 +60,7 @@ public class ApiRouteService {
ApiRouteInfo apiRouteInfo = null;
RouteInfo routeInfo = null;
routeInfo = routeDAO.queryRoute(routeKey);
- if(routeInfo!=null) {
+ if (routeInfo != null) {
apiRouteInfo = APIRouteAdapter.fromRouteInfo(routeInfo);
}
return apiRouteInfo;
@@ -74,24 +71,25 @@ public class ApiRouteService {
List<RouteInfo> routeInfoList = routeDAO.queryMultiRoute(apiRedisKeyPattern);
for (RouteInfo routeInfo : routeInfoList) {
if (routeInfo != null) {
- ApiRouteInfo apiRouteInfo = APIRouteAdapter.fromRouteInfo(routeInfo);;
+ ApiRouteInfo apiRouteInfo = APIRouteAdapter.fromRouteInfo(routeInfo);;
apiRouteList.add(apiRouteInfo);
}
}
return apiRouteList;
}
- public void updateApiRouteStatus2Redis(String routeKey,String status) throws Exception {
+ public void updateApiRouteStatus2Redis(String routeKey, String status) throws Exception {
RouteInfo routeInfo = routeDAO.queryRoute(routeKey);
- if(routeInfo != null){
+ if (routeInfo != null) {
routeInfo.setStatus(status);
- routeDAO.saveRoute(routeKey,routeInfo);
- }else{
+ routeDAO.saveRoute(routeKey, routeInfo);
+ } else {
throw new Exception("service to be updated is not exist! Update failed");
}
}
}
+
class APIRouteAdapter {
public static RouteInfo toRouteInfo(ApiRouteInfo apiRouteInfo) {
RouteInfo routeInfo = new RouteInfo();
@@ -114,14 +112,14 @@ class APIRouteAdapter {
spec.setControl(apiRouteInfo.getControl());
RouteServer[] routeServers = apiRouteInfo.getServers();
List<Node> nodeList = new ArrayList<>();
- for (RouteServer server: routeServers){
+ for (RouteServer server : routeServers) {
Node node = new Node();
node.setIp(server.getIp());
node.setPort(Integer.parseInt(server.getPort()));
node.setWeight(server.getWeight());
nodeList.add(node);
}
- spec.setNodes(nodeList.toArray(new Node[]{}));
+ spec.setNodes(nodeList.toArray(new Node[] {}));
routeInfo.setSpec(spec);
Metadata metadata = new Metadata();
@@ -156,14 +154,14 @@ class APIRouteAdapter {
apiRouteInfo.setControl(spec.getControl());
Node[] nodes = spec.getNodes();
List<RouteServer> routeServerList = new ArrayList<>();
- for (Node node: nodes){
+ for (Node node : nodes) {
RouteServer routeServer = new RouteServer();
routeServer.setIp(node.getIp());
routeServer.setPort(String.valueOf(node.getPort()));
routeServer.setWeight(node.getWeight());
routeServerList.add(routeServer);
}
- apiRouteInfo.setServers(routeServerList.toArray(new RouteServer[]{}));
+ apiRouteInfo.setServers(routeServerList.toArray(new RouteServer[] {}));
Metadata metadata = routeInfo.getMetadata();
apiRouteInfo.setServiceName(metadata.getName());
diff --git a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/CustomRouteService.java b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/CustomRouteService.java
index 4106ce7..cb8eb50 100644
--- a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/CustomRouteService.java
+++ b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/CustomRouteService.java
@@ -1,20 +1,22 @@
/*******************************************************************************
* 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.service;
+import java.util.ArrayList;
+import java.util.Calendar;
+import java.util.List;
+
import org.onap.msb.apiroute.api.CustomRouteInfo;
import org.onap.msb.apiroute.api.RouteServer;
import org.onap.msb.apiroute.wrapper.dao.DAOFactory;
@@ -26,10 +28,6 @@ import org.onap.msb.apiroute.wrapper.dao.route.bean.Spec;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import java.util.ArrayList;
-import java.util.Calendar;
-import java.util.List;
-
public class CustomRouteService {
private static final Logger LOGGER = LoggerFactory.getLogger(CustomRouteService.class);
@@ -37,15 +35,14 @@ public class CustomRouteService {
private static final CustomRouteService instance = new CustomRouteService();
private IRouteDAO routeDAO = DAOFactory.getRouteDAO();
- private CustomRouteService() {
- }
+ private CustomRouteService() {}
public static CustomRouteService getInstance() {
return instance;
}
public void saveCustomRouteService2Redis(CustomRouteInfo customRouteInfo, String routeKey) throws Exception {
- if(customRouteInfo ==null){
+ if (customRouteInfo == null) {
throw new Exception("input customRouteInfo to be saved is null!");
}
RouteInfo routeInfo = CustomRouteAdapter.toRouteInfo(customRouteInfo);
@@ -64,7 +61,7 @@ public class CustomRouteService {
CustomRouteInfo customRouteInfo = null;
RouteInfo routeInfo = null;
routeInfo = routeDAO.queryRoute(routeKey);
- if(routeInfo!=null) {
+ if (routeInfo != null) {
customRouteInfo = CustomRouteAdapter.fromRouteInfo(routeInfo);
}
return customRouteInfo;
@@ -82,18 +79,19 @@ public class CustomRouteService {
return customRouteList;
}
- public void updateCustomRouteStatus2Redis(String routeKey,String status) throws Exception {
+ public void updateCustomRouteStatus2Redis(String routeKey, String status) throws Exception {
RouteInfo routeInfo = routeDAO.queryRoute(routeKey);
- if(routeInfo != null){
+ if (routeInfo != null) {
routeInfo.setStatus(status);
- routeDAO.saveRoute(routeKey,routeInfo);
- }else{
+ routeDAO.saveRoute(routeKey, routeInfo);
+ } else {
throw new Exception("service to be updated is not exist! Update failed");
}
}
}
+
class CustomRouteAdapter {
public static RouteInfo toRouteInfo(CustomRouteInfo customRouteInfo) {
RouteInfo routeInfo = new RouteInfo();
@@ -112,14 +110,14 @@ class CustomRouteAdapter {
spec.setControl(customRouteInfo.getControl());
RouteServer[] routeServers = customRouteInfo.getServers();
List<Node> nodeList = new ArrayList<>();
- for (RouteServer server: routeServers){
+ for (RouteServer server : routeServers) {
Node node = new Node();
node.setIp(server.getIp());
node.setPort(Integer.parseInt(server.getPort()));
node.setWeight(server.getWeight());
nodeList.add(node);
}
- spec.setNodes(nodeList.toArray(new Node[]{}));
+ spec.setNodes(nodeList.toArray(new Node[] {}));
routeInfo.setSpec(spec);
Metadata metadata = new Metadata();
@@ -149,14 +147,14 @@ class CustomRouteAdapter {
customRouteInfo.setControl(spec.getControl());
Node[] nodes = spec.getNodes();
List<RouteServer> routeServerList = new ArrayList<>();
- for (Node node: nodes){
+ for (Node node : nodes) {
RouteServer routeServer = new RouteServer();
routeServer.setIp(node.getIp());
routeServer.setPort(String.valueOf(node.getPort()));
routeServer.setWeight(node.getWeight());
routeServerList.add(routeServer);
}
- customRouteInfo.setServers(routeServerList.toArray(new RouteServer[]{}));
+ customRouteInfo.setServers(routeServerList.toArray(new RouteServer[] {}));
Metadata metadata = routeInfo.getMetadata();
customRouteInfo.setServiceName(metadata.getName());
diff --git a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/IuiRouteService.java b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/IuiRouteService.java
index c602456..87a5e30 100644
--- a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/IuiRouteService.java
+++ b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/IuiRouteService.java
@@ -1,20 +1,22 @@
/*******************************************************************************
* 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.service;
+import java.util.ArrayList;
+import java.util.Calendar;
+import java.util.List;
+
import org.onap.msb.apiroute.api.IuiRouteInfo;
import org.onap.msb.apiroute.api.RouteServer;
import org.onap.msb.apiroute.wrapper.dao.DAOFactory;
@@ -26,10 +28,6 @@ import org.onap.msb.apiroute.wrapper.dao.route.bean.Spec;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import java.util.ArrayList;
-import java.util.Calendar;
-import java.util.List;
-
public class IuiRouteService {
private static final Logger LOGGER = LoggerFactory.getLogger(CustomRouteService.class);
@@ -37,15 +35,14 @@ public class IuiRouteService {
private static final IuiRouteService instance = new IuiRouteService();
private IRouteDAO routeDAO = DAOFactory.getRouteDAO();
- private IuiRouteService() {
- }
+ private IuiRouteService() {}
public static IuiRouteService getInstance() {
return instance;
}
public void saveIuiRouteService2Redis(IuiRouteInfo iuiRouteInfo, String routeKey) throws Exception {
- if(iuiRouteInfo ==null){
+ if (iuiRouteInfo == null) {
throw new Exception("input apiRouteInfo to be saved is null!");
}
RouteInfo routeInfo = IuiRouteAdapter.toRouteInfo(iuiRouteInfo);
@@ -64,7 +61,7 @@ public class IuiRouteService {
IuiRouteInfo iuiRouteInfo = null;
RouteInfo routeInfo = null;
routeInfo = routeDAO.queryRoute(routeKey);
- if(routeInfo!=null) {
+ if (routeInfo != null) {
iuiRouteInfo = IuiRouteAdapter.fromRouteInfo(routeInfo);
}
return iuiRouteInfo;
@@ -82,18 +79,19 @@ public class IuiRouteService {
return iuiRouteList;
}
- public void updateIuiRouteStatus2Redis(String routeKey,String status) throws Exception {
+ public void updateIuiRouteStatus2Redis(String routeKey, String status) throws Exception {
RouteInfo routeInfo = routeDAO.queryRoute(routeKey);
- if(routeInfo != null){
+ if (routeInfo != null) {
routeInfo.setStatus(status);
- routeDAO.saveRoute(routeKey,routeInfo);
- }else{
+ routeDAO.saveRoute(routeKey, routeInfo);
+ } else {
throw new Exception("service to be updated is not exist! Update failed");
}
}
}
+
class IuiRouteAdapter {
public static RouteInfo toRouteInfo(IuiRouteInfo iuiRouteInfo) {
RouteInfo routeInfo = new RouteInfo();
@@ -112,14 +110,14 @@ class IuiRouteAdapter {
spec.setControl(iuiRouteInfo.getControl());
RouteServer[] routeServers = iuiRouteInfo.getServers();
List<Node> nodeList = new ArrayList<>();
- for (RouteServer server: routeServers){
+ for (RouteServer server : routeServers) {
Node node = new Node();
node.setIp(server.getIp());
node.setPort(Integer.parseInt(server.getPort()));
node.setWeight(server.getWeight());
nodeList.add(node);
}
- spec.setNodes(nodeList.toArray(new Node[]{}));
+ spec.setNodes(nodeList.toArray(new Node[] {}));
routeInfo.setSpec(spec);
Metadata metadata = new Metadata();
@@ -148,14 +146,14 @@ class IuiRouteAdapter {
iuiRouteInfo.setControl(spec.getControl());
Node[] nodes = spec.getNodes();
List<RouteServer> routeServerList = new ArrayList<>();
- for (Node node: nodes){
+ for (Node node : nodes) {
RouteServer routeServer = new RouteServer();
routeServer.setIp(node.getIp());
routeServer.setPort(String.valueOf(node.getPort()));
routeServer.setWeight(node.getWeight());
routeServerList.add(routeServer);
}
- iuiRouteInfo.setServers(routeServerList.toArray(new RouteServer[]{}));
+ iuiRouteInfo.setServers(routeServerList.toArray(new RouteServer[] {}));
Metadata metadata = routeInfo.getMetadata();
iuiRouteInfo.setServiceName(metadata.getName());
diff --git a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/MicroServiceFullService.java b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/MicroServiceFullService.java
index 97427c3..0af369e 100644
--- a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/MicroServiceFullService.java
+++ b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/wrapper/service/MicroServiceFullService.java
@@ -1,17 +1,15 @@
/*******************************************************************************
* 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.service;
@@ -34,8 +32,6 @@ import org.onap.msb.apiroute.wrapper.util.MicroServiceUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import com.google.common.collect.ImmutableSet;
-
public class MicroServiceFullService {
private static final Logger LOGGER = LoggerFactory.getLogger(MicroServiceFullService.class);
@@ -43,8 +39,7 @@ public class MicroServiceFullService {
private IServiceDAO serviceDAO = DAOFactory.getServiceDAO();
- private MicroServiceFullService() {
- }
+ private MicroServiceFullService() {}
public static MicroServiceFullService getInstance() {
return instance;
@@ -57,8 +52,7 @@ public class MicroServiceFullService {
List<ServiceInfo> serviceInfoList = serviceDAO.queryMultiService(serviceKeyPattern);
for (ServiceInfo serviceInfo : serviceInfoList) {
if (serviceInfo != null) {
- MicroServiceFullInfo microServiceFullInfo = MicroServiceFullAdapter.fromServiceInfo(serviceInfo);
- ;
+ MicroServiceFullInfo microServiceFullInfo = MicroServiceFullAdapter.fromServiceInfo(serviceInfo);;
microServiceFullInfoList.add(microServiceFullInfo);
}
}
@@ -82,29 +76,28 @@ public class MicroServiceFullService {
}
public void saveMicroServiceInfo2Redis(MicroServiceFullInfo microServiceFullInfo) throws Exception {
- if(microServiceFullInfo ==null){
+ if (microServiceFullInfo == null) {
throw new Exception("input microServiceInfo to be saved is null!");
}
ServiceInfo serviceInfo = MicroServiceFullAdapter.toServiceInfo(microServiceFullInfo);
- String serviceKey = MicroServiceUtil.getServiceKey(microServiceFullInfo.getServiceName(),microServiceFullInfo.getVersion());
- serviceDAO.saveService(serviceKey,serviceInfo);
+ String serviceKey = MicroServiceUtil.getServiceKey(microServiceFullInfo.getServiceName(),
+ microServiceFullInfo.getVersion());
+ serviceDAO.saveService(serviceKey, serviceInfo);
}
- public void updateMicroServiceStatus(String serviceName, String version, String status)
- throws Exception {
+ public void updateMicroServiceStatus(String serviceName, String version, String status) throws Exception {
if (null == version || "null".equals(version)) {
version = "";
}
String serviceKey = MicroServiceUtil.getServiceKey(serviceName, version);
ServiceInfo serviceInfo = serviceDAO.queryService(serviceKey);
- if(serviceInfo != null){
+ if (serviceInfo != null) {
serviceInfo.setStatus(status);
- serviceDAO.saveService(serviceKey,serviceInfo);
+ serviceDAO.saveService(serviceKey, serviceInfo);
}
}
- public boolean existsMicroServiceInstance(String serviceName, String version)
- throws Exception {
+ public boolean existsMicroServiceInstance(String serviceName, String version) throws Exception {
if (null == version || "null".equals(version)) {
version = "";
}
@@ -112,8 +105,7 @@ public class MicroServiceFullService {
return RedisAccessWrapper.isExist(serviceKey);
}
- public MicroServiceFullInfo getMicroServiceInstance(String serviceName, String version)
- throws Exception {
+ public MicroServiceFullInfo getMicroServiceInstance(String serviceName, String version) throws Exception {
if (null == version || "null".equals(version)) {
version = "";
}
@@ -123,7 +115,7 @@ public class MicroServiceFullService {
ServiceInfo serviceInfo = null;
serviceInfo = serviceDAO.queryService(serviceKey);
- if(serviceInfo!=null) {
+ if (serviceInfo != null) {
microServiceInfo = MicroServiceFullAdapter.fromServiceInfo(serviceInfo);
}
return microServiceInfo;
@@ -131,6 +123,7 @@ public class MicroServiceFullService {
/**
* query all the versions of the given ServiceName
+ *
* @param serviceName
* @return
* @throws Exception
@@ -162,6 +155,7 @@ public class MicroServiceFullService {
}
}
+
class MicroServiceFullAdapter {
public static ServiceInfo toServiceInfo(MicroServiceFullInfo microServiceFullInfo) {
ServiceInfo serviceInfo = new ServiceInfo();
@@ -180,13 +174,14 @@ class MicroServiceFullAdapter {
Set<org.onap.msb.apiroute.api.Node> nodeSet = microServiceFullInfo.getNodes();
List<org.onap.msb.apiroute.wrapper.dao.service.bean.Node> serviceNodeList = new ArrayList<>();
for (org.onap.msb.apiroute.api.Node node : nodeSet) {
- org.onap.msb.apiroute.wrapper.dao.service.bean.Node serviceNode = new org.onap.msb.apiroute.wrapper.dao.service.bean.Node();
+ org.onap.msb.apiroute.wrapper.dao.service.bean.Node serviceNode =
+ new org.onap.msb.apiroute.wrapper.dao.service.bean.Node();
serviceNode.setIp(node.getIp());
serviceNode.setPort(node.getPort());
serviceNode.setTtl(node.getTtl());
serviceNodeList.add(serviceNode);
}
- spec.setNodes(serviceNodeList.toArray(new org.onap.msb.apiroute.wrapper.dao.service.bean.Node[]{}));
+ spec.setNodes(serviceNodeList.toArray(new org.onap.msb.apiroute.wrapper.dao.service.bean.Node[] {}));
serviceInfo.setSpec(spec);
Metadata metadata = new Metadata();