Package com.omniti.jezebel

Examples of com.omniti.jezebel.ResmonResult


      JezebelCheck check = null;
      try { check = (JezebelCheck) clazz.newInstance(); }
      catch (InstantiationException e) { robustE(e, response); return; }
      catch (IllegalAccessException e) { robustE(e, response); return; }
      Resmon r = new Resmon();
      ResmonResult rr = r.addResult(info.get("module"), info.get("name"));
      check.perform(info, config, rr);
      r.write(response);
    }
View Full Code Here


    private Stack<ResmonResult> s;
    public Resmon() {
        s = new Stack<ResmonResult>();
    }
    public ResmonResult addResult(String module, String service) {
        ResmonResult r = new ResmonResult(module, service);
        s.push(r);
        return r;
    }
View Full Code Here

                      HttpServletResponse response) {
        r.write(response);
    }

    static public ResmonResult getModule(String modname) {
        ResmonResult mod;
        mod = mods.get(modname);
        if(mod == null) {
            mod = r.addResult("jezebel", modname);
            mods.put(modname, mod);
        }
View Full Code Here

TOP

Related Classes of com.omniti.jezebel.ResmonResult

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.