|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.faces.context.FlashFactory
public abstract class 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 Summary | |
---|---|
FlashFactory()
|
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FlashFactory()
Method Detail |
---|
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>
public abstract Flash getFlash(boolean create)
Create (if needed) and return a
Flash
instance for this web application.
create
- true
to create a new instance for this request if
necessary; false
to return null
if there's no
instance in the current session
.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |