1 23 24 29 30 31 package com.sun.enterprise.management.config; 32 33 import java.util.Set ; 34 import javax.management.ObjectName ; 35 import javax.management.AttributeList ; 36 37 import com.sun.appserv.management.base.XTypes; 38 import com.sun.appserv.management.util.misc.GSetUtil; 39 40 import com.sun.enterprise.management.support.Delegate; 41 import com.sun.enterprise.management.config.AMXConfigImplBase; 42 43 44 47 import com.sun.appserv.management.config.IIOPServiceConfig; 48 49 public final class IIOPServiceConfigImpl extends AMXConfigImplBase 50 implements ConfigFactoryCallback 52 { 53 public 54 IIOPServiceConfigImpl( final Delegate delegate ) 55 { 56 super( delegate ); 57 } 58 59 62 public ObjectName 63 getIIOPSSLClientConfigObjectName() 64 { 65 return( getContaineeObjectName( XTypes.SSL_CONFIG ) ); 66 } 67 68 69 private static final Set <String > NOT_SUPERFLUOUS = 70 GSetUtil.newUnmodifiableStringSet( 71 "getIIOPSSLClientConfigObjectName" 72 ); 73 74 75 protected final Set <String > 76 getNotSuperfluousMethods() 77 { 78 return GSetUtil.newSet( super.getNotSuperfluousMethods(), NOT_SUPERFLUOUS ); 79 } 80 81 } 82 83 84 85 | Popular Tags |