msb discovery java client
[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   private Set<Node> nodes;
29
30   public Set<Node> getNodes() {
31     return nodes;
32   }
33
34   public void setNodes(Set<Node> nodes) {
35     this.nodes = nodes;
36   }
37
38   public String toString() {
39     StringBuffer buf = new StringBuffer();
40     buf.append("MicroService List:").append("\r\n");;
41     buf.append("serviceName:").append(getServiceName()).append("\r\n");
42     buf.append("version:").append(getVersion()).append("\r\n");
43     buf.append("url:").append(getUrl()).append("\r\n");
44     buf.append("protocol:").append(getProtocol()).append("\r\n");
45     buf.append("visualRange:").append(getVisualRange()).append("\r\n");
46     buf.append("nodes:").append("\r\n");
47
48     for (Node nodeInstace : this.nodes) {
49       buf.append("  ip-").append(nodeInstace.getIp()).append("\r\n");
50       buf.append("  port-").append(nodeInstace.getPort()).append("\r\n");
51       buf.append("  ttl-").append(nodeInstace.getTtl()).append("\r\n");
52     }
53     return buf.toString();
54   }
55 }