package com.kofax.kmc.klo.logistics.webservice; import com.kofax.kmc.kut.utilities.error.ErrorInfo; /* loaded from: classes3.dex */ public class WebServiceCallResult { private boolean success = false; private String errorMsg = ""; private Object extraData = null; private boolean useErrorMsgAsOnlyMessage = false; private ErrorInfo errorInfo = null; private boolean isCertificateError = false; public void setUseErrorMsgAsOnlyMessage(boolean z) { this.useErrorMsgAsOnlyMessage = z; } public void setSuccess(boolean z) { this.success = z; } public void setExtraData(Object obj) { this.extraData = obj; } public void setErrorMsg(String str) { this.errorMsg = str; } public void setErrorInfo(ErrorInfo errorInfo) { this.errorInfo = errorInfo; } public void setCertificateError(boolean z) { this.isCertificateError = z; } public boolean isUseErrorMsgAsOnlyMessage() { return this.useErrorMsgAsOnlyMessage; } public boolean isSuccess() { return this.success; } public boolean isCertificateError() { return this.isCertificateError; } public Object getExtraData() { return this.extraData; } public String getErrorMsg() { return this.errorMsg; } public ErrorInfo getErrorInfo() { return this.errorInfo; } }