118 lines
2.4 KiB
Java
118 lines
2.4 KiB
Java
package it.acxent.bank.poste;
|
|
|
|
import it.acxent.bank._BankAdapter;
|
|
|
|
public class PeResp extends _BankAdapter {
|
|
private long id_ordine;
|
|
|
|
private String errorText;
|
|
|
|
private String postdate;
|
|
|
|
private String paymentid;
|
|
|
|
private String trackid;
|
|
|
|
private String result;
|
|
|
|
private String tranid;
|
|
|
|
private String errorCode;
|
|
|
|
private String error;
|
|
|
|
private String auth;
|
|
|
|
private String errorService;
|
|
|
|
public static final String ESITO_OK = "APPROVED";
|
|
|
|
public long getId_ordine() {
|
|
return this.id_ordine;
|
|
}
|
|
|
|
public void setId_ordine(long id_ordine) {
|
|
this.id_ordine = id_ordine;
|
|
}
|
|
|
|
public String getErrorText() {
|
|
return (this.errorText == null) ? "" : this.errorText.trim();
|
|
}
|
|
|
|
public void setErrorText(String importo) {
|
|
this.errorText = importo;
|
|
}
|
|
|
|
public String getPostdate() {
|
|
return (this.postdate == null) ? "" : this.postdate.trim();
|
|
}
|
|
|
|
public void setPostdate(String data) {
|
|
this.postdate = data;
|
|
}
|
|
|
|
public String getPaymentid() {
|
|
return (this.paymentid == null) ? "" : this.paymentid.trim();
|
|
}
|
|
|
|
public void setPaymentid(String divisa) {
|
|
this.paymentid = divisa;
|
|
}
|
|
|
|
public String getTrackid() {
|
|
return (this.trackid == null) ? "" : this.trackid.trim();
|
|
}
|
|
|
|
public void setTrackid(String codTrans) {
|
|
this.trackid = codTrans;
|
|
}
|
|
|
|
public String getResult() {
|
|
return (this.result == null) ? "" : this.result.trim();
|
|
}
|
|
|
|
public void setResult(String esito) {
|
|
this.result = esito;
|
|
}
|
|
|
|
public String getTranid() {
|
|
return (this.tranid == null) ? "" : this.tranid.trim();
|
|
}
|
|
|
|
public void setTranid(String codAut) {
|
|
this.tranid = codAut;
|
|
}
|
|
|
|
public String getErrorCode() {
|
|
return (this.errorCode == null) ? "" : this.errorCode.trim();
|
|
}
|
|
|
|
public void setErrorCode(String nome) {
|
|
this.errorCode = nome;
|
|
}
|
|
|
|
public String getError() {
|
|
return (this.error == null) ? "" : this.error.trim();
|
|
}
|
|
|
|
public void setError(String cognome) {
|
|
this.error = cognome;
|
|
}
|
|
|
|
public String getAuth() {
|
|
return (this.auth == null) ? "" : this.auth.trim();
|
|
}
|
|
|
|
public void setAuth(String email) {
|
|
this.auth = email;
|
|
}
|
|
|
|
public String getErrorService() {
|
|
return (this.errorService == null) ? "" :
|
|
this.errorService.trim();
|
|
}
|
|
|
|
public void setErrorService(String errorService) {
|
|
this.errorService = errorService;
|
|
}
|
|
}
|