mirror of https://github.com/apache/jclouds.git
Merge pull request #951 from andrewgaul/java-7-gogrid
Implement Comparable in GoGrid ErrorResponse
This commit is contained in:
commit
1c2f550600
|
@ -24,13 +24,14 @@ import java.beans.ConstructorProperties;
|
||||||
|
|
||||||
import com.google.common.base.Objects;
|
import com.google.common.base.Objects;
|
||||||
import com.google.common.base.Objects.ToStringHelper;
|
import com.google.common.base.Objects.ToStringHelper;
|
||||||
|
import com.google.common.collect.ComparisonChain;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class ErrorResponse
|
* Class ErrorResponse
|
||||||
*
|
*
|
||||||
* @author Oleksiy Yarmula
|
* @author Oleksiy Yarmula
|
||||||
*/
|
*/
|
||||||
public class ErrorResponse {
|
public class ErrorResponse implements Comparable<ErrorResponse> {
|
||||||
|
|
||||||
public static Builder<?> builder() {
|
public static Builder<?> builder() {
|
||||||
return new ConcreteBuilder();
|
return new ConcreteBuilder();
|
||||||
|
@ -113,6 +114,14 @@ public class ErrorResponse {
|
||||||
&& Objects.equal(this.errorCode, that.errorCode);
|
&& Objects.equal(this.errorCode, that.errorCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int compareTo(ErrorResponse that) {
|
||||||
|
return ComparisonChain.start()
|
||||||
|
.compare(errorCode, that.errorCode)
|
||||||
|
.compare(message, that.message)
|
||||||
|
.result();
|
||||||
|
}
|
||||||
|
|
||||||
protected ToStringHelper string() {
|
protected ToStringHelper string() {
|
||||||
return Objects.toStringHelper(this)
|
return Objects.toStringHelper(this)
|
||||||
.add("message", message).add("errorCode", errorCode);
|
.add("message", message).add("errorCode", errorCode);
|
||||||
|
|
Loading…
Reference in New Issue