FileDocCategorySizeDatePackage
LogEventFactory.javaAPI DocGlassfish v2 API3254Fri May 04 22:33:44 BST 2007com.sun.enterprise.admin.selfmanagement.event

LogEventFactory

public final class LogEventFactory extends EventAbstractFactory
This is the factory to build and configure LogEvent
author
hemanth

Fields Summary
private static final LogEventFactory
instance
Constructors Summary
private LogEventFactory()
Creates a new instance of LogEventFactory

        super();
        EventBuilder.getInstance().addEventFactory(EVENT_LOG, this);
    
Methods Summary
static com.sun.enterprise.admin.selfmanagement.event.LogEventFactorygetInstance()

        return instance;
    
public EventinstrumentEvent(com.sun.enterprise.config.serverbeans.ElementProperty[] properties, java.lang.String description)

        LogEventFilter filter = new LogEventFilter();
        filter = (LogEventFilter)JavaBeanConfigurator.getInstance().configureBean(
                filter, properties );
        LogEvent event = new LogEvent(filter,description);
        return event;