1 23 24 28 29 34 35 package com.sun.enterprise.management.support.oldconfig; 36 37 42 43 import javax.management.ObjectName ; 44 import javax.management.AttributeList ; 45 46 47 public interface OldLogServiceMBean extends OldProperties 48 { 49 public boolean getAlarms(); 50 public void setAlarms( final boolean value ); 51 52 public String getFile(); 53 public void setFile( final String value ); 54 55 public String getLogFilter(); 56 public void setLogFilter( final String value ); 57 58 public String getLogHandler(); 59 public void setLogHandler( final String value ); 60 61 public String getLogRotationLimitInBytes(); 62 public void setLogRotationLimitInBytes( final String value ); 63 64 public boolean getLogToConsole(); 65 public void setLogToConsole( final boolean value ); 66 67 public boolean getUseSystemLogging(); 68 public void setUseSystemLogging( final boolean value ); 69 70 71 public ObjectName createModuleLogLevels( final AttributeList attribute_list ); 73 public boolean destroyConfigElement(); 74 public String getDefaultAttributeValue( final String attributeName ); 75 public ObjectName getModuleLogLevels(); 76 77 78 public void removeModuleLogLevels(); 79 80 81 } | Popular Tags |