org.notima.swish.SwishResponseHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swish4j Show documentation
Show all versions of swish4j Show documentation
Java client to communicate with Swish
The newest version!
package org.notima.swish;
public class SwishResponseHeaders {
private String location;
private String paymentRequestToken;
public SwishResponseHeaders() {}
public SwishResponseHeaders(String location, String paymentRequestToken) {
this.location = location;
this.paymentRequestToken = paymentRequestToken;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public String getPaymentRequestToken() {
return paymentRequestToken;
}
public void setPaymentRequestToken(String paymentRequestToken) {
this.paymentRequestToken = paymentRequestToken;
}
}