com.xeiam.xchange.campbx.dto.CampBXResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-campbx Show documentation
Show all versions of xchange-campbx Show documentation
XChange implementations for the CampBX Exchange.
The newest version!
package com.xeiam.xchange.campbx.dto;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author Matija Mazi
*/
public class CampBXResponse implements Serializable {
@JsonProperty("Success")
private String success;
@JsonProperty("Info")
private String info;
@JsonProperty("Error")
private String error;
public String getSuccess() {
return success;
}
public String getInfo() {
return info;
}
public String getError() {
return error;
}
public boolean isError() {
return error != null;
}
public boolean isInfo() {
return info != null;
}
public boolean isSuccess() {
return success != null;
}
private String getUnwrappedResult() {
return isError() ? error : isInfo() ? info : isSuccess() ? success : null;
}
private String getType() {
return isError() ? "Error" : isInfo() ? "Info" : isSuccess() ? "Success" : "";
}
@Override
public String toString() {
return String.format("CampBXResponse[%s: %s]", getType(), getUnwrappedResult());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy