Source Code Cross Referenced for Login.java in  » J2EE » Enhydra-Demos » com » lutris » airsent » presentation » customer » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » Enhydra Demos » com.lutris.airsent.presentation.customer 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright (c) 1999-2001 Lutris Technologies, Inc. All Rights
003:         * Reserved.
004:         * 
005:         * This source code file is distributed by Lutris Technologies, Inc. for
006:         * use only by licensed users of product(s) that include this source
007:         * file. Use of this source file or the software that uses it is covered
008:         * by the terms and conditions of the Lutris Enhydra Development License
009:         * Agreement included with this product.
010:         * 
011:         * This Software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
012:         * ANY KIND, either express or implied. See the License for the specific terms
013:         * governing rights and limitations under the License.
014:         * 
015:         * Contributor(s):
016:         * 
017:         * $Id: Login.java,v 1.1 2006-09-11 12:29:26 sinisa Exp $
018:         */
019:
020:        package com.lutris.airsent.presentation.customer;
021:
022:        import com.lutris.airsent.presentation.BasePO;
023:        import com.lutris.appserver.server.httpPresentation.*;
024:        import com.lutris.appserver.server.session.*;
025:        import com.lutris.util.*; //import com.lutris.xml.xmlc.*;
026:        //import com.lutris.xml.xmlc.html.*;
027:        import org.w3c.dom.*;
028:        import org.w3c.dom.html.*;
029:        import org.enhydra.xml.xmlc.XMLObject;
030:        import com.lutris.airsent.spec.AirSentException;
031:
032:        import com.lutris.airsent.presentation.AirSentPresentationException;
033:        import com.lutris.airsent.presentation.AirSentConstants;
034:        import java.util.*;
035:        import com.lutris.airsent.spec.customer.Customer;
036:
037:        /**
038:         * The login page of the AirSent app
039:         * 
040:         */
041:        public class Login extends BasePO {
042:
043:            /**
044:             * Constants
045:             */
046:            private static final int AUTH_LEVEL = AirSentConstants.UNAUTH_USER;
047:
048:            /**
049:             * Superclass method override.
050:             * returns the authorization level necessary to access this po.
051:             * 
052:             * @return int required authorization level
053:             */
054:            public int getRequiredAuthLevel() {
055:                return AUTH_LEVEL;
056:            }
057:
058:            /**
059:             * Default event. Just show the page.
060:             */
061:            public XMLObject handleDefault() throws HttpPresentationException {
062:                return showPage(null);
063:            }
064:
065:            /**
066:             * 
067:             * @param error messages
068:             * @return  page as XMLObject.
069:             */
070:            public XMLObject showPage(String errorMsg)
071:                    throws AirSentPresentationException {
072:                LoginHTML page = (LoginHTML) myComms.xmlcFactory
073:                        .create(LoginHTML.class);
074:
075:                try {
076:                    if (null != errorMsg
077:                            || null != (errorMsg = getSessionData()
078:                                    .getAndClearUserMessage())) {
079:                        page.setTextErrorText(errorMsg);
080:                    } else {
081:                        page.getElementErrorText().getParentNode().removeChild(
082:                                page.getElementErrorText());
083:                    }
084:                } catch (Exception e) {
085:                    throw new AirSentPresentationException(
086:                            "Trouble showing page", e);
087:                }
088:
089:                return page;
090:            }
091:
092:            /**
093:             * Process login data
094:             * 
095:             * @return error String
096:             */
097:            public XMLObject handleLogin() throws HttpPresentationException {
098:                String login = getComms().request
099:                        .getParameter(AirSentConstants.LOGIN_NAME);
100:                String password = getComms().request
101:                        .getParameter(AirSentConstants.PASSWORD_NAME);
102:                Customer customer = null;
103:
104:                try {
105:                    if ((customer = getApplication().getHomeManager()
106:                            .getCustomerManager().validatePassword(login,
107:                                    password)) == null) {
108:                        return showPage("Invalid username or password.");
109:                    } else {
110:                        getSessionData().setCustomer(customer);
111:                        getSessionData().setUserAuth(
112:                                AirSentConstants.CUSTOMER_USER);
113:
114:                        this .getSessionData().setUserMessage(
115:                                "Welcome, " + customer.getFirstName());
116:                        //throw new ServerPageRedirectException(AirSentConstants.ORDERSTEP1_PO);
117:                        throw new ClientPageRedirectException(
118:                                AirSentConstants.ORDERSTEP1_PO);
119:                    }
120:                    /*
121:                     * Catch Null pointer exception ( we canot make a instances of classes from business layer  when we run AirSent_pres ) 
122:                     * We need  to allow AirSent_pres to be functional ,  response
123:                     * will be default HTML page 
124:                     *	
125:                     */
126:                } catch (NullPointerException ex) {
127:                    throw new ClientPageRedirectException(
128:                            AirSentConstants.ORDERSTEP1_PO);
129:
130:                } catch (Exception ex) {
131:                    throw new AirSentPresentationException(
132:                            "System error finding user", ex);
133:                }
134:            }
135:
136:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.