Merge "Fixed Group and meter id bugs"
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / utils / Status.java
index a7a44456cc3011ec6e1957395f65dbcf2fccd9af..0387f72f382da08bc1ec395e73158d11545e253c 100644 (file)
@@ -16,6 +16,7 @@ import java.io.Serializable;
  * a string which describes a failure reason (if any) in human readable form.
  */
 public class Status implements Serializable {
+    private static final long serialVersionUID = 0L;
     private StatusCode code;
     private String description;
     private long requestId;
@@ -100,7 +101,7 @@ public class Status implements Serializable {
      * @return true if the Status code is {@code StatusCode.SUCCESS}
      */
     public boolean isSuccess() {
-        return code == StatusCode.SUCCESS;
+        return code == StatusCode.SUCCESS || code == StatusCode.CREATED;
     }
 
     /**
@@ -123,21 +124,25 @@ public class Status implements Serializable {
     public int hashCode() {
         final int prime = 31;
         int result = 1;
-        result = prime * result + ((code == null) ? 0 : code.hashCode());
+        result = prime * result + ((code == null) ? 0 : code.calculateConsistentHashCode());
         return result;
     }
 
     @Override
     public boolean equals(Object obj) {
-        if (this == obj)
+        if (this == obj) {
             return true;
-        if (obj == null)
+        }
+        if (obj == null) {
             return false;
-        if (getClass() != obj.getClass())
+        }
+        if (getClass() != obj.getClass()) {
             return false;
+        }
         Status other = (Status) obj;
-        if (code != other.code)
+        if (code != other.code) {
             return false;
+        }
         return true;
     }
 }