Source Code Cross Referenced for ItsNatServletRequest.java in  » Ajax » ItsNat » org » itsnat » core » 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 » Ajax » ItsNat » org.itsnat.core 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:          ItsNat Java Web Application Framework
03:          Copyright (C) 2007 Innowhere Software Services S.L., Spanish Company
04:          Author: Jose Maria Arranz Santamaria
05:
06:          This program is free software: you can redistribute it and/or modify
07:          it under the terms of the GNU Affero General Public License as published by
08:          the Free Software Foundation, either version 3 of the License, or
09:          (at your option) any later version. See the GNU Affero General Public 
10:          License for more details. See the copy of the GNU Affero General Public License
11:          included in this program. If not, see <http://www.gnu.org/licenses/>.
12:         */
13:
14:        package org.itsnat.core;
15:
16:        import javax.servlet.ServletRequest;
17:
18:        /**
19:         * Is the ItsNat wrapper of the <code>javax.servlet.ServletRequest</code> object. 
20:         *
21:         * @author Jose Maria Arranz Santamaria
22:         */
23:        public interface ItsNatServletRequest extends ItsNatUserData {
24:            /**
25:             * Returns the wrapped <code>javax.servlet.ServletRequest</code> object.
26:             *
27:             * @return the wrapped servlet request object. Can not be null.
28:             */
29:            public ServletRequest getServletRequest();
30:
31:            /**
32:             * Returns the ItsNat servlet associated to this request.
33:             *
34:             * @return the ItsNat servlet. Can not be null.
35:             */
36:            public ItsNatServlet getItsNatServlet();
37:
38:            /**
39:             * Returns the ItsNat session associated to this request.
40:             *
41:             * @return the ItsNat session. Can not be null.
42:             */
43:            public ItsNatSession getItsNatSession();
44:
45:            /**
46:             * Returns the ItsNat document associated to this request.
47:             *
48:             * @return the ItsNat document. If null no document could be loaded/accessed.
49:             */
50:            public ItsNatDocument getItsNatDocument();
51:
52:            /**
53:             * Returns the client document, this object mirrors the user (client) document/page 
54:             * sending this request.
55:             *
56:             * @return the client document. Is null if {@link #getItsNatDocument()} is null too.
57:             */
58:            public ClientDocument getClientDocument();
59:
60:            /**
61:             * Creates a variable resolver bound to this request.
62:             *
63:             * @return a variable resolver bound to this request.
64:             */
65:            public ItsNatVariableResolver createItsNatVariableResolver();
66:
67:            /**
68:             * Returns the document referrer. This referrer document was the previous page 
69:             * and the document related to this request is the target using classic
70:             * navigation (not an AJAX event).
71:             *
72:             * <p>The referrer and AJAX features of the source document must be enabled
73:             * (see {@link DocumentTemplate#setReferrerEnabled(boolean)} and
74:             *  {@link DocumentTemplate#setAJAXEnabled(boolean)}) otherwise returns null. </p>
75:             *
76:             * <p>Document referrer is not available if the target document was requested
77:             * using a direct URL (written on the browser URL bar) or, in the Internet Explorer
78:             * case, the target document is the result of a reload button click. </p>
79:             *
80:             * <p>Only the first request (the loading document phase) has access to the 
81:             * document referrer, subsequent requests (AJAX events) return null.</p>
82:             *
83:             * <p>The document referrer is still live but is going to be unloaded.</p>  
84:             *
85:             * @return the document referrer. May be null.
86:             */
87:            public ItsNatDocument getItsNatDocumentReferrer();
88:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.