Examples of LayoutSuiteJSONSerializer


Examples of cgl.shindig.layoutmanager.data.LayoutSuiteJSONSerializer

    private String jsonRep = null;

    public long getSize(LayoutSuite layoutSuite, Class<?> type,
            Type genericType, Annotation[] annotations, MediaType mediaType) {
        logger.info("LayoutSuiteJSONWriter:getSize...");
        LayoutSuiteJSONSerializer serializer = new LayoutSuiteJSONSerializer();
        try {
            if (jsonRep == null)
                jsonRep = serializer.convertToString(layoutSuite);
            return jsonRep.getBytes("utf-8").length;
        } catch(Exception ex) {
            return -1;
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.