1 22 package org.jboss.tm.recovery; 23 24 import javax.management.ObjectName ; 25 26 import org.jboss.system.ServiceMBean; 27 28 34 public interface BatchRecoveryLoggerServiceMBean 35 extends RecoveryLoggerInstance, 36 ServiceMBean 37 { 38 45 String [] getDirectoryList(); 46 47 54 void setDirectoryList(String [] directoryList); 55 56 61 int getLogFileSize(); 62 63 68 void setLogFileSize(int logFileSize); 69 70 76 String getHeuristicStatusLogDirectory(); 77 78 84 void setHeuristicStatusLogDirectory(String directory); 85 86 91 ObjectName getXidFactory(); 92 93 98 void setXidFactory(ObjectName xidFactory); 99 100 } 101 | Popular Tags |