Divide the MSB source codes into two repos
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / onap / msb / apiroute / api / RouteServer.java
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 ZTE Corporation.
+ * Copyright 2016 ZTE, Inc. and others.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.openo.msb.api;
+package org.onap.msb.apiroute.api;
 
 import io.swagger.annotations.ApiModelProperty;
 
 import java.io.Serializable;
+import java.util.Objects;
 
 
 public class RouteServer implements Serializable{
@@ -65,4 +66,18 @@ public class RouteServer implements Serializable{
         this.port = port;
     }
 
+       @Override
+       public boolean equals(Object o) {
+               if (this == o) return true;
+               if (o == null || getClass() != o.getClass()) return false;
+               RouteServer that = (RouteServer) o;
+               return Objects.equals(weight, that.weight) &&
+                               Objects.equals(ip, that.ip) &&
+                               Objects.equals(port, that.port);
+       }
+
+       @Override
+       public int hashCode() {
+               return Objects.hash(ip, port, weight);
+       }
 }