Java Doc for UsecaseView.java in  » Content-Management-System » apache-lenya-2.0 » org » apache » lenya » cms » usecase » 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 » Content Management System » apache lenya 2.0 » org.apache.lenya.cms.usecase 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.lenya.cms.usecase.UsecaseView

UsecaseView
public class UsecaseView implements Configurable,Serviceable(Code)
Information about a usecase view.
version:
   $Id: UsecaseView.java 587463 2007-10-23 11:58:57Z nettings $
version:
  


version:
   Example configuration:
version:
  

<view uri="/modules/foo/usecases/foo-mogrify.jx"
version:
   customFlow="/modules/foo/flow/myflow.js"
version:
   menu="false|true"
version:
   createContinuation="false|true"
version:
   >
version:
   <tab group="foo" name="bar"/> // optional
version:
   <parameter name="foo" value="bar/> // optional
version:
   </view>

version:
  


version:
  


version:
   uri is the relative URL of the page to be sent back to the client. If the URI
version:
   starts with a slash, it is resolved starting at the root sitemap, otherwise it
version:
   is resolved relative to the current sitemap. The URI should not contain a
version:
   scheme (such as cocoon:).
version:
  


version:
  


version:
   menu is a boolean that governs whether the Lenya GUI menu is displayed while
version:
   the usecase is running. The displaying of the menu is handled by the usecase.xmap sitemap;
version:
   hence this option is only functional if uri does not start with a slash
version:
   (or if you implement it yourself based on the showMenu() method of this object).

version:
   Default is false.
version:
  


version:
  


version:
   customFlow is a javascript file where you can provide custom methods that will override
version:
   those in the default usecase handler (modules-core/usecase/usecases.js).
version:
   Currently, it provides support for "customLoopFlow" and "customSubmitFlow". Refer to the default handler
version:
   for function prototypes and more information.
version:
   NB: the "menu" and "createContinuation" attributes will have no effect when you use custom flow code, unless
version:
   you check for them and implement the respective functions yourself.
version:
  


version:
  


version:
   createContinuation can be set to false, in which case the generic flowscript
version:
   uses "sendPage" instead of "sendPageAndWait" and terminates after the view has been sent.
version:
   When createContinuation is false, you must not specify submitFlow
version:
   or loopFlow.

version:
   Default is true.
version:
  


version:
  


version:
   For tabbed usecases, you can optionally specify a tab group and name. Additional custom
version:
   configuration can be passed via the generic "parameter" element.
version:
  


version:
  


version:
   For backwards compatibility with existing usecases, the constructor looks for a template
version:
   attribute if no uri is present. It is mapped to the same field, viewUri, internally.
version:
  



Field Summary
final protected static  StringATTRIBUTE_CREATE_CONT
    
final protected static  StringATTRIBUTE_CUSTOM_FLOW
    
final protected static  StringATTRIBUTE_GROUP
    
final protected static  StringATTRIBUTE_NAME
    
final protected static  StringATTRIBUTE_SHOW_MENU
    
final protected static  StringATTRIBUTE_TEMPLATE
    
final protected static  StringATTRIBUTE_URI
    
final protected static  StringATTRIBUTE_VALUE
    
final protected static  StringELEMENT_PARAMETER
    
final protected static  StringELEMENT_TAB
    


Method Summary
public  voidconfigure(Configuration config)
    
public  booleancreateContinuation()
    
public  StringgetCustomFlow()
    
public  StringgetParameter(String name)
    
Parameters:
  name - The parameter name.
public  TabgetTab()
    
public  Tab[]getTabsInGroup()
    
public  StringgetViewURI()
    
public  voidservice(ServiceManager manager)
    
public  booleanshowMenu()
    

Field Detail
ATTRIBUTE_CREATE_CONT
final protected static String ATTRIBUTE_CREATE_CONT(Code)



ATTRIBUTE_CUSTOM_FLOW
final protected static String ATTRIBUTE_CUSTOM_FLOW(Code)



ATTRIBUTE_GROUP
final protected static String ATTRIBUTE_GROUP(Code)



ATTRIBUTE_NAME
final protected static String ATTRIBUTE_NAME(Code)



ATTRIBUTE_SHOW_MENU
final protected static String ATTRIBUTE_SHOW_MENU(Code)



ATTRIBUTE_TEMPLATE
final protected static String ATTRIBUTE_TEMPLATE(Code)



ATTRIBUTE_URI
final protected static String ATTRIBUTE_URI(Code)



ATTRIBUTE_VALUE
final protected static String ATTRIBUTE_VALUE(Code)



ELEMENT_PARAMETER
final protected static String ELEMENT_PARAMETER(Code)



ELEMENT_TAB
final protected static String ELEMENT_TAB(Code)





Method Detail
configure
public void configure(Configuration config) throws ConfigurationException(Code)

See Also:   org.apache.avalon.framework.configuration.Configurable.configure(org.apache.avalon.framework.configuration.Configuration)



createContinuation
public boolean createContinuation()(Code)
whether a continuation should be created.



getCustomFlow
public String getCustomFlow()(Code)
the Flowscript snippet to be executed during the usecase view loop.



getParameter
public String getParameter(String name)(Code)

Parameters:
  name - The parameter name. The parameter value.



getTab
public Tab getTab()(Code)
The tab the usecase belongs to or null.



getTabsInGroup
public Tab[] getTabsInGroup()(Code)
All tabs in the same group.



getViewURI
public String getViewURI()(Code)
The URI of the JX template;



service
public void service(ServiceManager manager) throws ServiceException(Code)

See Also:   org.apache.avalon.framework.service.Serviceable.service(org.apache.avalon.framework.service.ServiceManager)



showMenu
public boolean showMenu()(Code)
whether the menubar should be visible on usecase screens.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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