Merge "Initial code import"
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / openo / msb / wrapper / consul / model / health / ServiceHealth.java
1 /**
2 * Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.openo.msb.wrapper.consul.model.health;
18
19 import org.openo.msb.wrapper.consul.model.catalog.ServiceInfo;
20
21 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
22 import com.fasterxml.jackson.annotation.JsonProperty;
23 import com.google.common.base.Objects;
24
25
26 @JsonIgnoreProperties(ignoreUnknown = true)
27 public  class ServiceHealth {
28
29     @JsonProperty("Node")
30     public  Node node;
31
32     @JsonProperty("Service")
33     public  Service service;
34
35     public Node getNode() {
36         return node;
37     }
38
39     public void setNode(Node node) {
40         this.node = node;
41     }
42
43     public Service getService() {
44         return service;
45     }
46
47     public void setService(Service service) {
48         this.service = service;
49     }
50     
51     @Override
52     public boolean equals(Object other)
53     {
54         if(this == other)
55             return true;
56         if(other instanceof ServiceHealth)
57         {
58             ServiceHealth that = (ServiceHealth)other;
59             return Objects.equal(node, that.node) && Objects.equal(service, that.service);
60         } else
61         {
62             return false;
63         }
64     }
65     
66     @Override
67     public int hashCode() {
68         return Objects.hashCode(node, service);
69     }
70
71    
72     
73 }