Back to project page Interkassa_android.
The source code is released under:
Apache License
If you think the Android project Interkassa_android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.interkassa.models; // w w w. j a v a 2 s . c o m import java.util.List; import org.apache.http.NameValuePair; public class PaymentFormRequest { List<NameValuePair> parameters; String action; public PaymentFormRequest(List<NameValuePair> parameters, String action) { super(); this.parameters = parameters; this.action = action; } public List<NameValuePair> getParameters() { return parameters; } public void setParameters(List<NameValuePair> parameters) { this.parameters = parameters; } public String getAction() { return action; } public void setAction(String action) { this.action = action; } }