1 23 24 29 30 31 package com.sun.appserv.management.config; 32 33 import com.sun.appserv.management.base.XTypes; 34 35 38 39 public interface KeepAliveConfig extends ConfigElement 40 { 41 42 public static final String J2EE_TYPE = XTypes.KEEP_ALIVE_CONFIG; 43 44 public String getMaxConnections(); 45 public void setMaxConnections( final String value ); 46 47 public String getThreadCount(); 48 public void setThreadCount( final String value ); 49 50 public String getTimeoutInSeconds(); 51 public void setTimeoutInSeconds( final String value ); 52 53 54 55 56 } 57 | Popular Tags |