FileDocCategorySizeDatePackage
JBIHandlerFactory.javaAPI DocGlassfish v2 API2743Fri May 04 22:30:28 BST 2007com.sun.enterprise.jbi.serviceengine.handlers

JBIHandlerFactory

public class JBIHandlerFactory extends Object
The factory for getting JBIHandlers.
author
Vikas Awasthi

Fields Summary
private static JBIHandlerFactory
factory
private static List
handlers
Constructors Summary
private JBIHandlerFactory()


      
        handlers = new ArrayList<JBIHandler>();
        handlers.add(new JBITransactionHandler());
        handlers.add(new JBISecurityHandler());
    
Methods Summary
public java.util.ListgetHandlers()
Gives a list of all the available handlers.

        return handlers;
    
public static com.sun.enterprise.jbi.serviceengine.handlers.JBIHandlerFactorygetInstance()
It returns a singleton factory instance

        return factory;