FileDocCategorySizeDatePackage
PEWebContainerFeatureFactoryImpl.javaAPI DocGlassfish v2 API5076Fri May 04 22:36:02 BST 2007com.sun.enterprise.web

PEWebContainerFeatureFactoryImpl

public class PEWebContainerFeatureFactoryImpl extends Object implements com.sun.enterprise.server.pluggable.WebContainerFeatureFactory
Implementation of WebContainerFeatureFactory which returns web container feature implementations for PE.

Fields Summary
Constructors Summary
Methods Summary
public booleangetAddDateStampToFirstAccessLogFile()
Returns true if the first access log file and all subsequently rotated ones are supposed to be date-stamped, and false if datestamp is to be added only starting with the first rotation.

return
true if first access log file and all subsequently rotated ones are supposed to be date-stamped, and false if datestamp is to be added only starting with the first rotation.

        return true;
    
public java.lang.StringgetDefaultAccessLogDateStampPattern()
Gets the default datestamp pattern to be applied to access log files.

return
The default datestamp pattern to be applied to access log files

        return "yyyy-MM-dd";
    
public java.lang.StringgetDefaultAccessLogPrefix()
Gets the default access log file prefix.

return
The default access log file prefix

        return "_access_log.";
    
public java.lang.StringgetDefaultAccessLogSuffix()
Gets the default access log file suffix.

return
The default access log file suffix

        return ".txt";
    
public intgetDefaultRotationIntervalInMinutes()
Gets the default rotation interval in minutes.

return
The default rotation interval in minutes

        return 15;
    
public HealthCheckergetHADBHealthChecker(WebContainer webContainer)

        return new PEHADBHealthChecker(webContainer);
    
public ReplicationReceivergetReplicationReceiver(EmbeddedWebContainer embedded)

        return new PEReplicationReceiver(embedded);
    
public java.lang.StringgetSSLImplementationName()

        return null;
    
public com.sun.enterprise.web.SSOFactorygetSSOFactory()

        return new PESSOFactory();
    
public VirtualServergetVirtualServer()

        return new VirtualServer();
    
public com.sun.enterprise.web.WebContainerAdminEventProcessorgetWebContainerAdminEventProcessor()

        return new PEWebContainerAdminEventProcessor();
    
public com.sun.enterprise.web.WebContainerStartStopOperationgetWebContainerStartStopOperation()

        return new PEWebContainerStartStopOperation();
    
public com.sun.enterprise.admin.monitor.stats.WebModuleStatsgetWebModuleStats()

        return new WebModuleStatsImpl();