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: package singlepagecrudform;
043:
044: import com.sun.rave.web.ui.appbase.AbstractRequestBean;
045: import javax.faces.FacesException;
046:
047: /**
048: * <p>Request scope data bean for your application. Create properties
049: * here to represent data that should be made available across different
050: * pages in the same HTTP request, so that the page bean classes do not
051: * have to be directly linked to each other.</p>
052: *
053: * <p>An instance of this class will be created for you automatically,
054: * the first time your application evaluates a value binding expression
055: * or method binding expression that references a managed bean using
056: * this class.</p>
057: */
058: public class RequestBean1 extends AbstractRequestBean {
059: // <editor-fold defaultstate="collapsed" desc="Managed Component Definition">
060: private int __placeholder;
061:
062: /**
063: * <p>Automatically managed component initialization. <strong>WARNING:</strong>
064: * This method is automatically generated, so any user-specified code inserted
065: * here is subject to being replaced.</p>
066: */
067: private void _init() throws Exception {
068: }
069:
070: // </editor-fold>
071:
072: /**
073: * <p>Construct a new request data bean instance.</p>
074: */
075: public RequestBean1() {
076: }
077:
078: /**
079: * <p>This method is called when this bean is initially added to
080: * request scope. Typically, this occurs as a result of evaluating
081: * a value binding or method binding expression, which utilizes the
082: * managed bean facility to instantiate this bean and store it into
083: * request scope.</p>
084: *
085: * <p>You may customize this method to allocate resources that are required
086: * for the lifetime of the current request.</p>
087: */
088: public void init() {
089: // Perform initializations inherited from our superclass
090: super .init();
091: // Perform application initialization that must complete
092: // *before* managed components are initialized
093: // TODO - add your own initialiation code here
094:
095: // <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">
096: // Initialize automatically managed components
097: // *Note* - this logic should NOT be modified
098: try {
099: _init();
100: } catch (Exception e) {
101: log("RequestBean1 Initialization Failure", e);
102: throw e instanceof FacesException ? (FacesException) e
103: : new FacesException(e);
104: }
105:
106: // </editor-fold>
107: // Perform application initialization that must complete
108: // *after* managed components are initialized
109: // TODO - add your own initialization code here
110: }
111:
112: /**
113: * <p>This method is called when this bean is removed from
114: * request scope. This occurs automatically when the corresponding
115: * HTTP response has been completed and sent to the client.</p>
116: *
117: * <p>You may customize this method to clean up resources allocated
118: * during the execution of the <code>init()</code> method, or
119: * at any later time during the lifetime of the request.</p>
120: */
121: public void destroy() {
122: }
123:
124: /**
125: * <p>Return a reference to the scoped data bean.</p>
126: */
127: protected SessionBean1 getSessionBean1() {
128: return (SessionBean1) getBean("SessionBean1");
129: }
130:
131: /**
132: * <p>Return a reference to the scoped data bean.</p>
133: */
134: protected ApplicationBean1 getApplicationBean1() {
135: return (ApplicationBean1) getBean("ApplicationBean1");
136: }
137: }
|