com.qcloud.cos.model.ciModel.persistence.FailedMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api-bundle Show documentation
Show all versions of cos_api-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries
relocated to different namespaces.
package com.qcloud.cos.model.ciModel.persistence;
import com.thoughtworks.xstream.annotations.XStreamAlias;
public class FailedMessage {
@XStreamAlias("State")
private String state;
@XStreamAlias("ErrorCode")
private String errorCode;
@XStreamAlias("ErrorMsg")
private String errorMsg;
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy