Source Code Cross Referenced for PortletManagerService.java in  » Portal » gridsphere » org » gridsphere » services » core » registry » 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 » gridsphere » org.gridsphere.services.core.registry 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a>
003:         * @version $Id: PortletManagerService.java 6408 2008-01-25 13:38:39Z docentt $
004:         */
005:        package org.gridsphere.services.core.registry;
006:
007:        import org.gridsphere.portlet.service.PortletService;
008:        import org.gridsphere.portletcontainer.PortletDispatcherException;
009:        import org.gridsphere.portletcontainer.PortletWebApplication;
010:
011:        import javax.portlet.PortletException;
012:        import javax.servlet.http.HttpServletRequest;
013:        import javax.servlet.http.HttpServletResponse;
014:        import java.util.List;
015:
016:        /**
017:         * The <code>PortletManagerService</code> is responsible for the initialization, installation, removal and overall
018:         * management of portlet web applications.
019:         */
020:        public interface PortletManagerService extends PortletService {
021:
022:            /**
023:             * Initializes all known portlet web applications in order
024:             *
025:             * @param req                the <code>HttpServletRequest</code>
026:             * @param res                the <code>HttpServletResponse</code>
027:             * @throws PortletDispatcherException      if a dispatching error occurs
028:             * @throws PortletException if an exception occurs initializing the portlet web application
029:             */
030:            public void initAllPortletWebApplications(HttpServletRequest req,
031:                    HttpServletResponse res) throws PortletDispatcherException,
032:                    PortletException;
033:
034:            /**
035:             * Loads all known portlet web applications in order
036:             *
037:             * @param req                the <code>HttpServletRequest</code>
038:             * @param res                the <code>HttpServletResponse</code>
039:             * @throws PortletDispatcherException      if a dispatching error occurs
040:             * @throws PortletException if an exception occurs loading the portlet web application
041:             */
042:            public void loadAllPortletWebApplications(HttpServletRequest req,
043:                    HttpServletResponse res) throws PortletDispatcherException,
044:                    PortletException;
045:
046:            /**
047:             * Initializes a portlet web application
048:             *
049:             * @param webApplicationName the name of the portlet web application
050:             * @param req                the <code>HttpServletRequest</code>
051:             * @param res                the <code>HttpServletresponse</code>
052:             * @throws PortletDispatcherException      if a dispatching error occurs
053:             * @throws PortletException if an exception occurs initializing the portlet web application
054:             */
055:            public void initPortletWebApplication(String webApplicationName,
056:                    HttpServletRequest req, HttpServletResponse res)
057:                    throws PortletDispatcherException, PortletException;
058:
059:            /**
060:             * Loads a portlet web application
061:             *
062:             * @param webApplicationName the name of the portlet web application
063:             * @param req                the <code>HttpServletRequest</code>
064:             * @param res                the <code>HttpServletresponse</code>
065:             * @throws PortletDispatcherException      if a dispatching error occurs
066:             * @throws PortletException if an exception occurs loading the portlet web application
067:             */
068:            public void loadPortletWebApplication(String webApplicationName,
069:                    HttpServletRequest req, HttpServletResponse res)
070:                    throws PortletDispatcherException, PortletException;
071:
072:            /**
073:             * Shuts down a currently active portlet web application from the portlet container
074:             *
075:             * @param webApplicationName the name of the portlet web application
076:             * @param req                the <code>HttpServletRequest</code>
077:             * @param res                the <code>HttpServletResponse</code>
078:             * @throws PortletDispatcherException      if a dispatching error occurs
079:             */
080:            public void destroyPortletWebApplication(String webApplicationName,
081:                    HttpServletRequest req, HttpServletResponse res)
082:                    throws PortletDispatcherException;
083:
084:            public void logoutPortletWebApplication(String webApplicationName,
085:                    HttpServletRequest req, HttpServletResponse res)
086:                    throws PortletDispatcherException;
087:
088:            public void logoutAllPortletWebApplications(HttpServletRequest req,
089:                    HttpServletResponse res) throws PortletDispatcherException;
090:
091:            /**
092:             * Lists all the portlet web applications known to the portlet container
093:             *
094:             * @return the list of web application names as <code>String</code> elements
095:             */
096:            public List<String> getPortletWebApplicationNames();
097:
098:            /**
099:             * Returns the portlet web application description for the supplied web application name
100:             *
101:             * @param webApplicationName the name of the portlet web application
102:             * @return the portlet web application description
103:             */
104:            public String getPortletWebApplicationDescription(
105:                    String webApplicationName);
106:
107:            public void addPortletWebApplication(
108:                    PortletWebApplication portletWebApp);
109:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.