Java Doc for PortletApplication.java in  » Portal » jetspeed-2.1.3 » org » apache » jetspeed » om » common » portlet » 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 » jetspeed 2.1.3 » org.apache.jetspeed.om.common.portlet 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.jetspeed.om.common.portlet.PortletApplication

All known Subclasses:   org.apache.jetspeed.portlets.pam.beans.PortletApplicationBean,  org.apache.jetspeed.portlets.pam.PortletApplicationBean,
PortletApplication
public interface PortletApplication extends PortletApplicationDefinition(Code)
PortletApplication Extends the org.apache.pluto.om.portlet.PortletApplicationDefinition interface adding methods for those attributes that do not have them so as to make manipulating the portlet OM easier.
author:
   David Sean Taylor
version:
   $Id: PortletApplication.java 516448 2007-03-09 16:25:47Z ate $




Method Summary
 StringgetApplicationIdentifier()
    
 intgetApplicationType()
     Gets the Portlet Application type.
 PortletModegetCustomPortletMode(PortletMode mode)
    
 CollectiongetCustomPortletModes()
    
 WindowStategetCustomWindowState(WindowState state)
    
 CollectiongetCustomWindowStates()
    
 StringgetDescription()
    
 StringgetJetspeedSecurityConstraint()
    

Get the Jetspeed Security Constraint reference for this portlet application. This security constraint name references a Jetspeed-specific Security Constraint. Security Constraints are not Java Security Permissions, but a Jetspeed specific way of securing portlets, also known as PSML constraints. See the page.security file for examples of defining security constraint definitions. If a Jetspeed Security Constraint is not defined for a portlet, the constraint applied will then fallback to the constraint defined for the portlet application. If the portlet application does not define a constraint, then no security constraints will be applied to this portlet.

 CollectiongetJetspeedServices()
     Gets a collection of all Jetspeed Services allowed for this application.
 PortletModegetMappedPortletMode(PortletMode mode)
    
 WindowStategetMappedWindowState(WindowState state)
    
public  GenericMetadatagetMetadata()
    
 StringgetName()
     Gets the name of the Portlet Application.
 PortletDefinitiongetPortletDefinitionByName(String name)
     Finds a portlet by portlet name, searching this portlet application's collection.
Parameters:
  name - The portlet name.
 CollectiongetPortletDefinitions()
    
 CollectiongetSupportedPortletModes()
    
 CollectiongetSupportedWindowStates()
    
 CollectiongetUserAttributeRefs()
    
 CollectiongetUserAttributes()
    
 booleanisLayoutApplication()
    



Method Detail
getApplicationIdentifier
String getApplicationIdentifier()(Code)



getApplicationType
int getApplicationType()(Code)
Gets the Portlet Application type. Valid values are:

MutablePortletApplication.WEBAPP - A standard web application, stored in the web application server's web application space.

MutablePortletApplication.LOCAL - A local portlet application stored within Jetspeed's web application.

The type of portlet application.




getCustomPortletMode
PortletMode getCustomPortletMode(PortletMode mode)(Code)



getCustomPortletModes
Collection getCustomPortletModes()(Code)



getCustomWindowState
WindowState getCustomWindowState(WindowState state)(Code)



getCustomWindowStates
Collection getCustomWindowStates()(Code)



getDescription
String getDescription()(Code)



getJetspeedSecurityConstraint
String getJetspeedSecurityConstraint()(Code)

Get the Jetspeed Security Constraint reference for this portlet application. This security constraint name references a Jetspeed-specific Security Constraint. Security Constraints are not Java Security Permissions, but a Jetspeed specific way of securing portlets, also known as PSML constraints. See the page.security file for examples of defining security constraint definitions. If a Jetspeed Security Constraint is not defined for a portlet, the constraint applied will then fallback to the constraint defined for the portlet application. If the portlet application does not define a constraint, then no security constraints will be applied to this portlet. Security constraints for a portlet are normally checking during the render process of a portlet.

The name of the Security Definition applied to this portlet, defined in the Jetspeed Security Constraints



getJetspeedServices
Collection getJetspeedServices()(Code)
Gets a collection of all Jetspeed Services allowed for this application.
See Also:   org.apache.jetspeed.om.common.JetspeedServiceReference The collection of services of type JetspeedServiceReference.



getMappedPortletMode
PortletMode getMappedPortletMode(PortletMode mode)(Code)



getMappedWindowState
WindowState getMappedWindowState(WindowState state)(Code)



getMetadata
public GenericMetadata getMetadata()(Code)
Returns the metadata from the extended jetspeed-portlet.xml Jetspeed specific metadata



getName
String getName()(Code)
Gets the name of the Portlet Application. Name of the application



getPortletDefinitionByName
PortletDefinition getPortletDefinitionByName(String name)(Code)
Finds a portlet by portlet name, searching this portlet application's collection.
Parameters:
  name - The portlet name. A Portlet Definition



getPortletDefinitions
Collection getPortletDefinitions()(Code)



getSupportedPortletModes
Collection getSupportedPortletModes()(Code)



getSupportedWindowStates
Collection getSupportedWindowStates()(Code)



getUserAttributeRefs
Collection getUserAttributeRefs()(Code)

Gets the collection of user attribute refs associated with this portlet application.




getUserAttributes
Collection getUserAttributes()(Code)

Gets the collection of user attributes associated with this portlet application.




isLayoutApplication
boolean isLayoutApplication()(Code)
Returns true if the portlet application is a layout application Layouts are not "general" portlets, but instead used to group together other layouts and portlet fragments true when this app is a Jetspeed layout application



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.