FileDocCategorySizeDatePackage
ComponentConfiguration.javaAPI DocGlassfish v2 API3142Fri May 04 22:30:28 BST 2007com.sun.enterprise.jbi.serviceengine.config

ComponentConfiguration

public class ComponentConfiguration extends Object
Configuration info of Application Server component
author
since
SJSAS 9.0

Fields Summary
private final String
THREADPOOL
This may be set by administrator to use another thread pool for the configuration.
private String
BRIDGE_CLASS
Constructors Summary
Methods Summary
public com.sun.enterprise.jbi.serviceengine.core.BridgegetBridge()

        try {
            return (Bridge)Class.forName(BRIDGE_CLASS).newInstance();
        } catch(Exception e) {
            throw new ServiceEngineException("Error initializing Bridge,cannot continue :" + e);
        }
    
public java.lang.StringgetCommonThreadPoolName()
Return the thread pool name for the component.

return
Name of thread pool, if set by the user. Returns null, if nothing is set.

    
                                         
       
        return System.getProperty(THREADPOOL);