115 lines
2.2 KiB
Java
115 lines
2.2 KiB
Java
package it.acxent.bank.setefi;
|
|
|
|
import it.acxent.bank._BankAdapter;
|
|
|
|
public class SetefiResp extends _BankAdapter {
|
|
private String trackid;
|
|
|
|
private String paymentid;
|
|
|
|
private String udf3;
|
|
|
|
private String udf1;
|
|
|
|
private String result;
|
|
|
|
private String auth;
|
|
|
|
private long id_ordine;
|
|
|
|
private String responsecode;
|
|
|
|
private String tranid;
|
|
|
|
private String udf4;
|
|
|
|
private String udf2;
|
|
|
|
public String getResponsecode() {
|
|
return (this.responsecode == null) ? "" : this.responsecode;
|
|
}
|
|
|
|
public void setResponsecode(String myalertcode) {
|
|
this.responsecode = myalertcode;
|
|
}
|
|
|
|
public String getTranid() {
|
|
return (this.tranid == null) ? "" : this.tranid;
|
|
}
|
|
|
|
public void setTranid(String myalertdescription) {
|
|
this.tranid = myalertdescription;
|
|
}
|
|
|
|
public String getAuth() {
|
|
return (this.auth == null) ? "" : this.auth;
|
|
}
|
|
|
|
public void setAuth(String myauthcode) {
|
|
this.auth = myauthcode;
|
|
}
|
|
|
|
public String getUdf2() {
|
|
return (this.udf2 == null) ? "" : this.udf2;
|
|
}
|
|
|
|
public void setUdf2(String mybuyeremail) {
|
|
this.udf2 = mybuyeremail;
|
|
}
|
|
|
|
public String getUdf3() {
|
|
return (this.udf3 == null) ? "" : this.udf3;
|
|
}
|
|
|
|
public void setUdf3(String mybuyername) {
|
|
this.udf3 = mybuyername;
|
|
}
|
|
|
|
public String getTrackid() {
|
|
return (this.trackid == null) ? "" : this.trackid;
|
|
}
|
|
|
|
public void setTrackid(String myshoplogin) {
|
|
this.trackid = myshoplogin;
|
|
}
|
|
|
|
public String getPaymentid() {
|
|
return this.paymentid;
|
|
}
|
|
|
|
public void setPaymentid(String myshoptrxID) {
|
|
this.paymentid = myshoptrxID;
|
|
}
|
|
|
|
public String getResult() {
|
|
return (this.result == null) ? "" : this.result;
|
|
}
|
|
|
|
public void setResult(String mytrxresult) {
|
|
this.result = mytrxresult;
|
|
}
|
|
|
|
public long getId_ordine() {
|
|
return this.id_ordine;
|
|
}
|
|
|
|
public void setId_ordine(long id_ordine) {
|
|
this.id_ordine = id_ordine;
|
|
}
|
|
|
|
public String getUdf1() {
|
|
return (this.udf1 == null) ? "" : this.udf1;
|
|
}
|
|
|
|
public void setUdf1(String udf1) {
|
|
this.udf1 = udf1;
|
|
}
|
|
|
|
public String getUdf4() {
|
|
return (this.udf4 == null) ? "" : this.udf4;
|
|
}
|
|
|
|
public void setUdf4(String udf4) {
|
|
this.udf4 = udf4;
|
|
}
|
|
}
|