001 package railo.runtime.monitor; 002 003 import railo.runtime.config.ConfigServer; 004 005 public interface Monitor { 006 007 public static final short TYPE_INTERVALL = 1; 008 public static final short TYPE_REQUEST = 2; 009 010 011 public void init(ConfigServer configServer, String name, boolean logEnabled); 012 013 public short getType(); 014 public String getName(); 015 public Class getClazz(); 016 public boolean isLogEnabled(); 017 }