1 23 24 29 30 31 package com.sun.appserv.management.config; 32 33 import java.util.Map ; 34 35 import com.sun.appserv.management.base.XTypes; 36 import com.sun.appserv.management.base.Container; 37 38 39 40 41 42 43 46 public interface IIOPServiceConfig 47 extends ConfigElement, Container 48 { 49 50 public static final String J2EE_TYPE = XTypes.IIOP_SERVICE_CONFIG; 51 52 58 public SSLConfig createIIOPSSLClientConfig( Map <String ,String > params ); 59 60 63 public void removeIIOPSSLClientConfig(); 64 65 69 public SSLConfig getIIOPSSLClientConfig(); 70 71 public boolean getClientAuthenticationRequired(); 72 73 public void setClientAuthenticationRequired( final boolean value ); 74 75 76 77 82 public Map <String ,IIOPListenerConfig> getIIOPListenerConfigMap(); 83 84 85 94 public IIOPListenerConfig createIIOPListenerConfig( String name, String address, Map <String ,String > optional ); 95 96 101 public void removeIIOPListenerConfig( String name ); 102 103 104 107 ORBConfig getORBConfig(); 108 } 109 110 111 112 113 114 115 116 | Popular Tags |