public class RequestBean
extends com.sun.rave.web.ui.appbase.AbstractRequestBean
Request scope data bean for your application. Create properties here to represent data that should be made available across different pages in the same HTTP request, so that the page bean classes do not have to be directly linked to each other.
An instance of this class will be created for you automatically, the first time your application evaluates a value binding expression or method binding expression that references a managed bean using this class.
Constructor and Description |
---|
RequestBean()
Construct a new request data bean instance.
|
Modifier and Type | Method and Description |
---|---|
void |
destroy()
This method is called when this bean is removed from
request scope.
|
java.lang.String |
getAge() |
protected ApplicationBean |
getApplicationBean()
Return a reference to the scoped data bean.
|
java.lang.String |
getCaseID() |
java.lang.String |
getCreatedDate() |
protected SessionBean |
getSessionBean()
Return a reference to the scoped data bean.
|
java.lang.String |
getSpecID() |
java.lang.String |
getStatus() |
java.lang.String |
getTaskID() |
void |
init()
This method is called when this bean is initially added to
request scope.
|
void |
setAge(java.lang.String age) |
void |
setCaseID(java.lang.String caseID) |
void |
setCreatedDate(java.lang.String createdDate) |
void |
setSpecID(java.lang.String specID) |
void |
setStatus(java.lang.String status) |
void |
setTaskID(java.lang.String taskID) |
erase, error, error, fatal, fatal, getApplication, getApplicationMap, getBean, getCachedExceptions, getContext, getExternalContext, getFacesContext, getLifecycle, getRequestMap, getSessionMap, getValue, info, info, log, log, setBean, setValue, warn, warn
protected SessionBean getSessionBean()
Return a reference to the scoped data bean.
protected ApplicationBean getApplicationBean()
Return a reference to the scoped data bean.
public void init()
This method is called when this bean is initially added to request scope. Typically, this occurs as a result of evaluating a value binding or method binding expression, which utilizes the managed bean facility to instantiate this bean and store it into request scope.
You may customize this method to allocate resources that are required for the lifetime of the current request.
init
in class com.sun.rave.web.ui.appbase.AbstractRequestBean
public void destroy()
This method is called when this bean is removed from request scope. This occurs automatically when the corresponding HTTP response has been completed and sent to the client.
You may customize this method to clean up resources allocated
during the execution of the init()
method, or
at any later time during the lifetime of the request.
destroy
in class com.sun.rave.web.ui.appbase.AbstractRequestBean
public java.lang.String getSpecID()
public void setSpecID(java.lang.String specID)
public java.lang.String getCaseID()
public void setCaseID(java.lang.String caseID)
public java.lang.String getTaskID()
public void setTaskID(java.lang.String taskID)
public java.lang.String getStatus()
public void setStatus(java.lang.String status)
public java.lang.String getCreatedDate()
public void setCreatedDate(java.lang.String createdDate)
public java.lang.String getAge()
public void setAge(java.lang.String age)
Copyright © 2004-2014 The YAWL Foundation.