Fix java check style issue
[msb/discovery.git] / sdclient / discovery-service / src / main / java / org / onap / msb / sdclient / core / ConsulService.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 @JsonIgnoreProperties(ignoreUnknown = true)
23 public class ConsulService implements Serializable {
24     private static final long serialVersionUID = 1L;
25
26     @JsonProperty("ID")
27     private String id;
28
29     @JsonProperty("Service")
30     private String service;
31
32     @JsonProperty("Tags")
33     private List<String> tags;
34
35     @JsonProperty("Address")
36     private String address;
37
38     @JsonProperty("Port")
39     private int port;
40
41     public String getId() {
42         return id;
43     }
44
45     public void setId(String id) {
46         this.id = id;
47     }
48
49     public String getService() {
50         return service;
51     }
52
53     public void setService(String service) {
54         this.service = service;
55     }
56
57     public List<String> getTags() {
58         return tags;
59     }
60
61     public void setTags(List<String> tags) {
62         this.tags = tags;
63     }
64
65     public String getAddress() {
66         return address;
67     }
68
69     public void setAddress(String address) {
70         this.address = address;
71     }
72
73     public int getPort() {
74         return port;
75     }
76
77     public void setPort(int port) {
78         this.port = port;
79     }
80
81
82 }