1 16 package org.mortbay.http.jmx; 17 18 import javax.management.MBeanException ; 19 20 import org.mortbay.util.jmx.LifeCycleMBean; 21 22 23 28 public class NCSARequestLogMBean extends LifeCycleMBean 29 { 30 31 34 public NCSARequestLogMBean() 35 throws MBeanException 36 {} 37 38 39 protected void defineManagedResource() 40 { 41 super.defineManagedResource(); 42 defineAttribute("filename"); 43 defineAttribute("datedFilename"); 44 defineAttribute("logDateFormat"); 45 defineAttribute("logTimeZone"); 46 defineAttribute("retainDays"); 47 defineAttribute("extended"); 48 defineAttribute("logCookies"); 49 defineAttribute("logLatency"); 50 defineAttribute("append"); 51 } 52 } 53 | Popular Tags |