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

fi.foyt.paytrail.io.IOHandlerResult Maven / Gradle / Ivy

The newest version!
package fi.foyt.paytrail.io;

public class IOHandlerResult {
	
	public IOHandlerResult(int code, String response) {
		this.response = response;
		this.code = code;
	}

	public int getCode() {
		return code;
	}
	
	public String getResponse() {
		return response;
	}
	
	private String response;
	private int code;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy