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 HTTPProtocolConfig extends ConfigElement 40 { 41 42 public static final String J2EE_TYPE = XTypes.HTTP_PROTOCOL_CONFIG; 43 44 public String getDefaultResponseType(); 45 53 public void setDefaultResponseType( final String value ); 54 55 public boolean getDNSLookupEnabled(); 56 public void setDNSLookupEnabled( final boolean value ); 57 58 61 public String getForcedResponseType(); 62 65 public void setForcedResponseType( final String value ); 66 67 public boolean getSSLEnabled(); 68 public void setSSLEnabled( final boolean value ); 69 70 public String getVersion(); 71 public void setVersion( final String value ); 72 73 } 74 | Popular Tags |