001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: /*
043: * RequestBean1.java
044: *
045: * Created on Aug 3, 2007, 11:02:03 AM
046: * by jb144761
047: *
048: */
049: package singlepagecrudtable;
050:
051: import com.sun.rave.web.ui.appbase.AbstractRequestBean;
052: import javax.faces.FacesException;
053:
054: /**
055: * <p>Request scope data bean for your application. Create properties
056: * here to represent data that should be made available across different
057: * pages in the same HTTP request, so that the page bean classes do not
058: * have to be directly linked to each other.</p>
059: *
060: * <p>An instance of this class will be created for you automatically,
061: * the first time your application evaluates a value binding expression
062: * or method binding expression that references a managed bean using
063: * this class.</p>
064: */
065: public class RequestBean1 extends AbstractRequestBean {
066: // <editor-fold defaultstate="collapsed" desc="Managed Component Definition">
067: private int __placeholder;
068:
069: /**
070: * <p>Automatically managed component initialization. <strong>WARNING:</strong>
071: * This method is automatically generated, so any user-specified code inserted
072: * here is subject to being replaced.</p>
073: */
074: private void _init() throws Exception {
075: }
076:
077: // </editor-fold>
078:
079: /**
080: * <p>Construct a new request data bean instance.</p>
081: */
082: public RequestBean1() {
083: }
084:
085: /**
086: * <p>This method is called when this bean is initially added to
087: * request scope. Typically, this occurs as a result of evaluating
088: * a value binding or method binding expression, which utilizes the
089: * managed bean facility to instantiate this bean and store it into
090: * request scope.</p>
091: *
092: * <p>You may customize this method to allocate resources that are required
093: * for the lifetime of the current request.</p>
094: */
095: public void init() {
096: // Perform initializations inherited from our superclass
097: super .init();
098: // Perform application initialization that must complete
099: // *before* managed components are initialized
100: // TODO - add your own initialiation code here
101:
102: // <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">
103: // Initialize automatically managed components
104: // *Note* - this logic should NOT be modified
105: try {
106: _init();
107: } catch (Exception e) {
108: log("RequestBean1 Initialization Failure", e);
109: throw e instanceof FacesException ? (FacesException) e
110: : new FacesException(e);
111: }
112:
113: // </editor-fold>
114: // Perform application initialization that must complete
115: // *after* managed components are initialized
116: // TODO - add your own initialization code here
117: }
118:
119: /**
120: * <p>This method is called when this bean is removed from
121: * request scope. This occurs automatically when the corresponding
122: * HTTP response has been completed and sent to the client.</p>
123: *
124: * <p>You may customize this method to clean up resources allocated
125: * during the execution of the <code>init()</code> method, or
126: * at any later time during the lifetime of the request.</p>
127: */
128: public void destroy() {
129: }
130:
131: /**
132: * <p>Return a reference to the scoped data bean.</p>
133: */
134: protected SessionBean1 getSessionBean1() {
135: return (SessionBean1) getBean("SessionBean1");
136: }
137:
138: /**
139: * <p>Return a reference to the scoped data bean.</p>
140: */
141: protected ApplicationBean1 getApplicationBean1() {
142: return (ApplicationBean1) getBean("ApplicationBean1");
143: }
144: }
|