1 23 24 28 29 34 35 package com.sun.enterprise.management.support.oldconfig; 36 37 42 43 import javax.management.ObjectName ; 44 import javax.management.AttributeList ; 45 46 47 public interface OldIIOPServiceMBean 48 { 49 public boolean getClientAuthenticationRequired(); 50 public void setClientAuthenticationRequired( final boolean value ); 51 52 53 public ObjectName createIiopListener( final AttributeList attribute_list ); 55 public ObjectName createOrb( final AttributeList attribute_list ); 56 public ObjectName createSslClientConfig( final AttributeList attribute_list ); 57 public boolean destroyConfigElement(); 58 public String getDefaultAttributeValue( final String attributeName ); 59 public javax.management.ObjectName [] getIiopListener(); 60 public ObjectName getIiopListenerById( final String key ); 61 public ObjectName getOrb(); 62 public ObjectName getSslClientConfig(); 63 public void removeIiopListenerById( final String key ); 64 public void removeOrb(); 65 public void removeSslClientConfig(); 66 67 } | Popular Tags |