|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.faces.context.FacesContextFactory
public abstract class FacesContextFactory
FacesContextFactory is a factory object that creates
(if needed) and returns new FacesContext
instances, initialized
for the processing of the specified request and response objects.
Implementations may take advantage of the calls to the
release()
method of the allocated FacesContext
instances to pool and recycle them, rather than creating a new instance
every time.
There must be one FacesContextFactory
instance per web
application that is utilizing JavaServer Faces. This instance can be
acquired, in a portable manner, by calling:
FacesContextFactory factory = (FacesContextFactory) FactoryFinder.getFactory(FactoryFinder.FACES_CONTEXT_FACTORY);
Constructor Summary | |
---|---|
FacesContextFactory()
|
Method Summary | |
---|---|
abstract FacesContext |
getFacesContext(Object context,
Object request,
Object response,
Lifecycle lifecycle)
Create (if needed) and return a FacesContext instance
that is initialized for the processing of the specified request
and response objects, utilizing the specified Lifecycle
instance, for this web application. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FacesContextFactory()
Method Detail |
---|
public abstract FacesContext getFacesContext(Object context, Object request, Object response, Lifecycle lifecycle) throws FacesException
Create (if needed) and return a FacesContext
instance
that is initialized for the processing of the specified request
and response objects, utilizing the specified Lifecycle
instance, for this web application.
The implementation of this method must ensure that calls to the
getCurrentInstance()
method of FacesContext
,
from the same thread that called this method, will return the same
FacesContext
instance until the release()
method is called on that instance.
context
- In servlet environments, the
ServletContext
that is associated with this web
applicationrequest
- In servlet environments, the
ServletRequest
that is to be processedresponse
- In servlet environments, the
ServletResponse
that is to be processedlifecycle
- The Lifecycle
instance being used
to process this request
FacesException
- if a FacesContext
cannot be
constructed for the specified parameters
NullPointerException
- if any of the parameters
are null
|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2006 Sun Microsystems, Inc. All rights reserved.