1 23 24 25 package com.sun.appserv.management.config; 26 27 import java.util.Map ; 28 29 30 import javax.management.AttributeList ; 31 32 33 import com.sun.appserv.management.base.XTypes; 34 import com.sun.appserv.management.base.Container; 35 36 37 38 41 public interface HTTPListenerConfig 42 extends PropertiesAccess, NamedConfigElement, SSLConfigContainer, Enabled 43 { 44 45 public static final String J2EE_TYPE = XTypes.HTTP_LISTENER_CONFIG; 46 47 public String getAcceptorThreads(); 48 public void setAcceptorThreads( String value ); 49 50 public String getAddress(); 51 public void setAddress( String value ); 52 53 public String getDefaultVirtualServer(); 54 public void setDefaultVirtualServer( String value ); 55 56 public boolean getEnabled(); 57 public void setEnabled( boolean value ); 58 59 65 public String getPort(); 66 public void setPort( String value ); 67 68 74 public String getRedirectPort(); 75 public void setRedirectPort( String value ); 76 77 public boolean getSecurityEnabled(); 78 public void setSecurityEnabled( boolean value ); 79 80 public String getServerName(); 81 public void setServerName( String value ); 82 83 public boolean getXpoweredBy(); 84 public void setXpoweredBy( boolean value ); 85 86 89 public String getFamily(); 90 93 public void setFamily( final String value ); 94 95 public String getExternalPort(); 96 public void setExternalPort( final String value ); 97 98 public boolean getBlockingEnabled(); 99 public void setBlockingEnabled( final boolean value ); 100 } 101 | Popular Tags |