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