1 23 24 29 30 package com.sun.appserv.management.config; 31 32 import com.sun.appserv.management.base.XTypes; 33 34 35 36 37 40 41 public interface ThreadPoolConfig extends NamedConfigElement 42 { 43 44 public static final String J2EE_TYPE = XTypes.THREAD_POOL_CONFIG; 45 46 public String getIdleThreadTimeoutInSeconds(); 47 public void setIdleThreadTimeoutInSeconds( String value ); 48 49 public String getMaxThreadPoolSize(); 50 public void setMaxThreadPoolSize( String value ); 51 52 public String getMinThreadPoolSize(); 53 public void setMinThreadPoolSize( String value ); 54 55 public String getNumWorkQueues(); 56 public void setNumWorkQueues( String value ); 57 58 public String getThreadPoolId(); 59 60 61 62 63 } 64 | Popular Tags |