| org.jboss.naming.NamingServiceMBean
All known Subclasses: org.jboss.naming.NamingService,
NamingServiceMBean | public interface NamingServiceMBean extends org.jboss.system.ServiceMBean,org.jnp.server.MainMBean(Code) | | MBean interface.
|
Method Summary | |
void | createAlias(String fromName, String toName) | boolean | getCallByValue() Get the call by value flag for jndi lookups.
true if all lookups are unmarshalled using the caller's TCL, false if in VM lookups return the value by reference. | java.util.Map | getMethodMap() | java.lang.Object | invoke(org.jboss.invocation.Invocation invocation) Expose the Naming service via JMX to invokers.
Parameters: invocation - A pointer to the invocation object Return value of method invocation. throws: Exception - Failed to invoke method. | void | removeAlias(String name) | void | setCallByValue(boolean flag) Set the call by value flag for jndi lookups.
Parameters: flag - - true if all lookups are unmarshalled using the caller's TCL, false if in VM lookups return the value by reference. | void | setLookupPool(org.jboss.util.threadpool.BasicThreadPoolMBean poolMBean) |
createAlias | void createAlias(String fromName, String toName) throws Exception(Code) | | Create an alias
Parameters: fromName - the from name Parameters: toName - the to name throws: Exception - for any error |
getCallByValue | boolean getCallByValue()(Code) | | Get the call by value flag for jndi lookups.
true if all lookups are unmarshalled using the caller's TCL, false if in VM lookups return the value by reference. |
getMethodMap | java.util.Map getMethodMap()(Code) | | Expose the Naming service interface mapping as a read-only attribute
A Map of the Naming interface |
setCallByValue | void setCallByValue(boolean flag)(Code) | | Set the call by value flag for jndi lookups.
Parameters: flag - - true if all lookups are unmarshalled using the caller's TCL, false if in VM lookups return the value by reference. |
setLookupPool | void setLookupPool(org.jboss.util.threadpool.BasicThreadPoolMBean poolMBean)(Code) | | Set the thread pool used for the bootstrap lookups
Parameters: poolMBean - |
|
|