Fix java check style issue
[msb/discovery.git] / sdclient / discovery-service / src / main / java / org / onap / msb / sdclient / wrapper / consul / model / health / ServiceHealth.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.wrapper.consul.model.health;
15
16 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
17 import com.fasterxml.jackson.annotation.JsonProperty;
18 import com.google.common.base.Objects;
19
20
21 @JsonIgnoreProperties(ignoreUnknown = true)
22 public class ServiceHealth {
23
24     @JsonProperty("Node")
25     public Node node;
26
27     @JsonProperty("Service")
28     public Service service;
29
30     public Node getNode() {
31         return node;
32     }
33
34     public void setNode(Node node) {
35         this.node = node;
36     }
37
38     public Service getService() {
39         return service;
40     }
41
42     public void setService(Service service) {
43         this.service = service;
44     }
45
46     @Override
47     public boolean equals(Object other) {
48         if (this == other)
49             return true;
50         if (other instanceof ServiceHealth) {
51             ServiceHealth that = (ServiceHealth) other;
52             return Objects.equal(node, that.node) && Objects.equal(service, that.service);
53         } else {
54             return false;
55         }
56     }
57
58     @Override
59     public int hashCode() {
60         return Objects.hashCode(node, service);
61     }
62
63
64
65 }