Back to project page khandroid.
The source code is released under:
Apache License
If you think the Android project khandroid 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.github.khandroid.volley; // w w w .j a va 2s. c o m import java.util.HashMap; import java.util.Map; public class PostRequestBuilderImpl implements PostRequestBuilder { private Map<String, String> mPostParams = new HashMap<String, String>(); public void setPostParameter(String key, String value) { mPostParams.put(key, value); } public Map<String, String> getPostParameters() { return mPostParams; } }