Remove duplicated class variable
[msb/java-sdk.git] / src / main / java / org / onap / msb / sdk / discovery / entity / MicroServiceInfo.java
1 /*******************************************************************************
2  * Copyright 2017 ZTE, Inc. and others.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  * 
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * 
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  ******************************************************************************/
14 package org.onap.msb.sdk.discovery.entity;
15
16 import java.io.Serializable;
17 import java.util.Set;
18
19 /**
20  * @ClassName: MicroServiceInfo Bean
21  * @Description:微服务信息实体类
22  * @author 10188044
23  * @date 2016-1-19
24  */
25 public class MicroServiceInfo extends Service<Node> implements Serializable {
26     private static final long serialVersionUID = 1L;
27
28     public String toString() {
29         StringBuffer buf = new StringBuffer();
30         buf.append("MicroService List:").append("\r\n");;
31         buf.append("serviceName:").append(getServiceName()).append("\r\n");
32         buf.append("version:").append(getVersion()).append("\r\n");
33         buf.append("url:").append(getUrl()).append("\r\n");
34         buf.append("protocol:").append(getProtocol()).append("\r\n");
35         buf.append("visualRange:").append(getVisualRange()).append("\r\n");
36         buf.append("nodes:").append("\r\n");
37
38         for (Node nodeInstace : this.getNodes()) {
39             buf.append("  ip-").append(nodeInstace.getIp()).append("\r\n");
40             buf.append("  port-").append(nodeInstace.getPort()).append("\r\n");
41             buf.append("  ttl-").append(nodeInstace.getTtl()).append("\r\n");
42         }
43         return buf.toString();
44     }
45 }