Fix java check style issue
[msb/discovery.git] / sdclient / discovery-service / src / main / java / org / onap / msb / sdclient / core / CatalogService.java
1 /**
2  * Copyright 2016-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.sdclient.core;
15
16 import java.io.Serializable;
17 import java.util.List;
18
19 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
20 import com.fasterxml.jackson.annotation.JsonProperty;
21
22
23
24 @JsonIgnoreProperties(ignoreUnknown = true)
25 public class CatalogService implements Serializable {
26     private static final long serialVersionUID = 1L;
27     @JsonProperty("Node")
28     private String node;
29
30     @JsonProperty("Address")
31     private String address;
32
33     @JsonProperty("ServiceName")
34     private String serviceName;
35
36     @JsonProperty("ServiceID")
37     private String serviceId;
38
39     @JsonProperty("ServiceAddress")
40     private String serviceAddress;
41
42     @JsonProperty("ServicePort")
43     private int servicePort;
44
45     @JsonProperty("ServiceTags")
46     private List<String> serviceTags;
47
48     public String getNode() {
49         return node;
50     }
51
52     public void setNode(String node) {
53         this.node = node;
54     }
55
56     public String getAddress() {
57         return address;
58     }
59
60     public void setAddress(String address) {
61         this.address = address;
62     }
63
64     public String getServiceName() {
65         return serviceName;
66     }
67
68     public void setServiceName(String serviceName) {
69         this.serviceName = serviceName;
70     }
71
72     public String getServiceId() {
73         return serviceId;
74     }
75
76     public void setServiceId(String serviceId) {
77         this.serviceId = serviceId;
78     }
79
80     public String getServiceAddress() {
81         return serviceAddress;
82     }
83
84     public void setServiceAddress(String serviceAddress) {
85         this.serviceAddress = serviceAddress;
86     }
87
88     public int getServicePort() {
89         return servicePort;
90     }
91
92     public void setServicePort(int servicePort) {
93         this.servicePort = servicePort;
94     }
95
96     public List<String> getServiceTags() {
97         return serviceTags;
98     }
99
100     public void setServiceTags(List<String> serviceTags) {
101         this.serviceTags = serviceTags;
102     }
103
104
105
106 }