All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.notima.swish.SwishResponseHeaders Maven / Gradle / Ivy

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy