Package javax.faces.event
Class PostConstructApplicationEvent
- java.lang.Object
-
- java.util.EventObject
-
- javax.faces.event.SystemEvent
-
- javax.faces.event.PostConstructApplicationEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class PostConstructApplicationEvent extends SystemEvent
This event must be published by the runtime after all configuration resources have been parsed and processed.
This event is useful for listeners that need to perform custom post-configuration processing without having to rely on
ServletContextListeners which may be invoked before the JavaServer Faces runtime has started it's configuration process.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PostConstructApplicationEvent(Application application)Constructs a newAppliationPostConstructEventfor this application.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApplicationgetApplication()The sourceApplicationthat sent this event.-
Methods inherited from class javax.faces.event.SystemEvent
isAppropriateListener, processListener
-
-
-
-
Constructor Detail
-
PostConstructApplicationEvent
public PostConstructApplicationEvent(Application application)
Constructs a new
AppliationPostConstructEventfor this application.- Parameters:
application- the application that has been configured- Since:
- 2.0
-
-
Method Detail
-
getApplication
public Application getApplication()
The source
Applicationthat sent this event.- Since:
- 2.0
-
-