Remove Chinese comments
[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
18 /**
19  * @ClassName: MicroServiceInfo Bean
20  * @Description
21  * @author 10188044
22  * @date 2016-1-19
23  */
24 public class MicroServiceInfo extends Service<Node> implements Serializable {
25     private static final long serialVersionUID = 1L;
26
27     public String toString() {
28         StringBuilder buf = new StringBuilder();
29         buf.append("MicroService List:").append("\r\n");;
30         buf.append("serviceName:").append(getServiceName()).append("\r\n");
31         buf.append("version:").append(getVersion()).append("\r\n");
32         buf.append("url:").append(getUrl()).append("\r\n");
33         buf.append("protocol:").append(getProtocol()).append("\r\n");
34         buf.append("visualRange:").append(getVisualRange()).append("\r\n");
35         buf.append("enable_ssl:").append(isEnable_ssl()).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 }