Class FlashFactory
- All Implemented Interfaces:
FacesWrapper<FlashFactory>
FlashFactory is a
factory object that creates (if needed) and returns Flash
instances. Implementations of JavaServer Faces must provide at
least a default implementation of Flash.
There must be one FlashFactory instance per web
application that is utilizing JavaServer Faces. This instance can
be acquired, in a portable manner, by calling:
FlashFactory factory = (FlashFactory)
FactoryFinder.getFactory(FactoryFinder.FLASH_FACTORY);
The common way to access the flash instance from Java code is
still via ExternalContext.getFlash(). The common way to access
the flash from Faces views is the implicit EL object "flash". The
runtime must ensure that the FlashFactory is used to
instantiate the flash.
- Since:
- 2.2
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract FlashgetFlash(boolean create) Create (if needed) and return aFlashinstance for this web application.If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
-
Constructor Details
-
FlashFactory
public FlashFactory()
-
-
Method Details
-
getWrapped
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped. A default implementation is provided that returns
null.- Specified by:
getWrappedin interfaceFacesWrapper<FlashFactory>- Since:
- 2.2
-
getFlash
Create (if needed) and return a
Flashinstance for this web application.- Parameters:
create-trueto create a new instance for this request if necessary;falseto returnnullif there's no instance in the currentsession.- Since:
- 2.2
-