Package com.alibaba.otter.manager.web.common.api

Examples of com.alibaba.otter.manager.web.common.api.JsonResult


    @Autowired
    private HttpServletResponse   response;

    protected void returnError(String errMessage) {
        JsonResult result = new JsonResult(false);
        result.setErrMessage(errMessage);
        String content = buildJson(result);
        writeResponse(content);
    }
View Full Code Here


        String content = buildJson(result);
        writeResponse(content);
    }

    protected void returnSuccess() {
        JsonResult result = new JsonResult(true);
        String content = buildJson(result);
        writeResponse(content);

    }
View Full Code Here

        writeResponse(content);

    }

    protected void returnSuccess(DATA data) {
        JsonResult result = new JsonResult(true);
        result.setData(data);
        String content = buildJson(result);
        writeResponse(content);

    }
View Full Code Here

TOP

Related Classes of com.alibaba.otter.manager.web.common.api.JsonResult

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.