Package net.csdn.modules.http

Examples of net.csdn.modules.http.RestResponse


* 6/28/13 WilliamZhu(allwefantasy@gmail.com)
*/
public class BaseControllerTest extends IocTest {

    public RestResponse runAction(String path, Map params, RestRequest.Method method) throws Exception {
        RestResponse response = new MockRestResponse();

        Map newParams = new HashMap();
        for (Object key : params.keySet()) {
            newParams.put(key, params.get(key).toString());
        }
View Full Code Here


            throw e;
        }
    }

    public RestResponse runAction(String path, Map params, String rawParamsStr, RestRequest.Method method) throws Exception {
        RestResponse response = new MockRestResponse();

        Map newParams = new HashMap();
        if (params != null) {
            for (Object key : params.keySet()) {
                newParams.put(key, params.get(key).toString());
View Full Code Here

TOP

Related Classes of net.csdn.modules.http.RestResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.