1 2 18 19 22 package org.quartz.ee.jmx.jboss; 23 24 import org.jboss.system.ServiceMBean; 25 26 47 public interface QuartzServiceMBean extends ServiceMBean { 48 49 56 57 void setJndiName(String jndiName) throws Exception ; 58 59 String getJndiName(); 60 61 void setProperties(String properties); 62 63 void setPropertiesFile(String propertiesFile); 64 65 void setStartScheduler(boolean startScheduler); 66 } 67 | Popular Tags |