Package com.jitlogic.zorka.common.util

Examples of com.jitlogic.zorka.common.util.JSONWriter


    public void setField(Object obj, String name, Object value) {
        ObjectInspector.setField(obj, name, value);
    }

    public String json(Object obj) {
        return new JSONWriter().write(obj);
    }
View Full Code Here


        return discoveries;
    }


    public String discovery(int flags, QueryDef... qdefs) {
        return new JSONWriter().write(_discovery(flags, qdefs));
    }
View Full Code Here

     * @param filter object name filter
     * @param attrs  attribute chain
     * @return JSON string describing discovered objects.
     */
    public String discovery(String mbs, String filter, String... attrs) {
        return new JSONWriter().write(_discovery(mbs, filter, attrs));
    }
View Full Code Here

TOP

Related Classes of com.jitlogic.zorka.common.util.JSONWriter

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.