/* * RequestBean1.java * * Created on Aug 25, 2008, 11:20:16 AM */ package planosactuacao; import com.evolute.utils.error.ErrorLogger; import com.sun.rave.web.ui.appbase.AbstractRequestBean; import javax.faces.FacesException; /** *
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.
* * @author lluis */ public class RequestBean1 extends AbstractRequestBean { //Automatically managed component initialization. WARNING: * This method is automatically generated, so any user-specified code inserted * here is subject to being replaced.
*/ private void _init() throws Exception { } //Construct a new request data bean instance.
*/ public RequestBean1() { } /** *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.
*/ @Override public void init() { // Perform initializations inherited from our superclass super.init(); // Perform application initialization that must complete // *before* managed components are initialized // TODO - add your own initialiation code here //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.
Return a reference to the scoped data bean.
* * @return reference to the scoped data bean */ protected SessionBean1 getSessionBean1() { return (SessionBean1) getBean("SessionBean1"); } /** *Return a reference to the scoped data bean.
* * @return reference to the scoped data bean */ protected ApplicationBean1 getApplicationBean1() { return (ApplicationBean1) getBean("ApplicationBean1"); } }