Source Code Cross Referenced for RequestResponseFactory.java in  » Portal » Open-Portal » com » sun » portal » portletappengine » 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 » Portal » Open Portal » com.sun.portal.portletappengine 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 2004-2005 Sun Microsystems, Inc. All
003:         * rights reserved. Use of this product is subject 
004:         * to license terms. Federal Acquisitions: 
005:         * Commercial Software -- Government Users 
006:         * Subject to Standard License Terms and 
007:         * Conditions. 
008:         * 
009:         * Sun, Sun Microsystems, the Sun logo, and Sun ONE 
010:         * are trademarks or registered trademarks of Sun Microsystems, 
011:         * Inc. in the United States and other countries. 
012:         */
013:        package com.sun.portal.portletappengine;
014:
015:        import com.sun.portal.portletappengine.ipc.EventRequest;
016:        import com.sun.portal.portletappengine.ipc.EventResponse;
017:        import com.sun.portal.portletcontainercommon.PortletContainerActionRequest;
018:        import com.sun.portal.portletcontainercommon.PortletContainerActionResponse;
019:        import com.sun.portal.portletcontainercommon.PortletContainerEventRequest;
020:        import com.sun.portal.portletcontainercommon.PortletContainerEventResponse;
021:        import com.sun.portal.portletcontainercommon.PortletContainerRenderRequest;
022:        import com.sun.portal.portletcontainercommon.PortletContainerRenderResponse;
023:        import com.sun.portal.portletcontainercommon.descriptor.PortletDescriptor;
024:
025:        import javax.portlet.ActionRequest;
026:        import javax.portlet.ActionResponse;
027:        import javax.portlet.PortalContext;
028:        import javax.portlet.PortletContext;
029:        import javax.portlet.RenderRequest;
030:        import javax.portlet.RenderResponse;
031:        import javax.servlet.http.HttpServletRequest;
032:        import javax.servlet.http.HttpServletResponse;
033:        import java.io.ByteArrayOutputStream;
034:        import java.io.StringWriter;
035:
036:        /** 
037:         * The request response factory provides access to the <code>ActionReqeust</code>,
038:         * <code>RenderRequest</code>, <code>ActionResponse</code>, and <code>ActionResponse</code>
039:         * objects for the portlet container. 
040:         * <P>
041:         * @see <code>PortletAppEngineService</code>
042:         */
043:        public interface RequestResponseFactory {
044:
045:            // Key for req/res factory object in servlet context
046:            public static final String REQUEST_RESPONSE_FACTORY_PREFIX = "request_response_factory";
047:
048:            /**
049:             * Returns a <code>ActionRequest</code> object based on the passed
050:             * servlet request.
051:             * <P>
052:             * @return a <code>ActionRequest</code> object
053:             */
054:            public ActionRequest getActionRequest(HttpServletRequest req,
055:                    HttpServletResponse res,
056:                    PortletContainerActionRequest pContReq,
057:                    PortletContainerActionResponse pContRes,
058:                    PortletContext context, PortalContext portalContext,
059:                    PortletDescriptor pDescriptor, StringWriter writer);
060:
061:            /**
062:             * Returns a <code>RenderRequest</code> object based on the passed
063:             * servlet request.
064:             * <P>
065:             * @return a <code>RenderRequest</code> object
066:             */
067:            public RenderRequest getRenderRequest(HttpServletRequest req,
068:                    HttpServletResponse res,
069:                    PortletContainerRenderRequest pContReq,
070:                    PortletContainerRenderResponse pContRes,
071:                    PortletContext context, PortalContext portalContext,
072:                    PortletDescriptor pDescriptor);
073:
074:            /**
075:             * Returns a <code>ActionResponse</code> object.
076:             * <P>
077:             * @return a <code>ActionResponse</code> object
078:             */
079:            public ActionResponse getActionResponse(HttpServletRequest req,
080:                    HttpServletResponse res, ActionRequest aReq,
081:                    PortletContainerActionRequest pContReq,
082:                    PortletContainerActionResponse pContRes);
083:
084:            /**
085:             * Returns a <code>RenderResponse</code> object.
086:             * <P>
087:             * @return a <code>RenderResponse</code> object
088:             */
089:            public RenderResponse getRenderResponse(HttpServletRequest req,
090:                    HttpServletResponse res, RenderRequest rReq,
091:                    PortletContainerRenderRequest pContReq,
092:                    PortletContainerRenderResponse pContRes,
093:                    StringWriter stringWriter, ByteArrayOutputStream output,
094:                    PortletDescriptor pDescriptor);
095:
096:            /**
097:             * Releases the passed in action request.
098:             */
099:            public void releaseActionRequest(ActionRequest actionReq);
100:
101:            /**
102:             * Releases the passed in render request.
103:             */
104:            public void releaseRenderRequest(RenderRequest renderReq);
105:
106:            /**
107:             * Releases the passed in action response.
108:             */
109:            public void releaseActionResponse(ActionResponse actionRes);
110:
111:            /**
112:             * Releases the passed in portlet response.
113:             */
114:            public void releaseRenderResponse(RenderResponse renderRes);
115:
116:            public EventRequest getEventRequest(HttpServletRequest req,
117:                    HttpServletResponse res,
118:                    PortletContainerEventRequest pceRequest,
119:                    PortletContainerEventResponse pceResponse,
120:                    PortletContext context, PortalContext portalContext,
121:                    PortletDescriptor pDescriptor);
122:
123:            public EventResponse getEventResponse(
124:                    PortletContainerEventResponse pceResponse);
125:
126:            public void releaseEventRequest(EventRequest ereq);
127:
128:            public void releaseEventResponse(EventResponse eres);
129:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.