public abstract class FlashFactory extends Object implements 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.
Constructor and Description |
---|
FlashFactory() |
Modifier and Type | Method and Description |
---|---|
abstract Flash |
getFlash(boolean create)
Create (if needed) and return a
|
FlashFactory |
getWrapped()
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped. |
public FlashFactory 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
.
getWrapped
in interface FacesWrapper<FlashFactory>
Copyright © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.