Source Code Cross Referenced for OBENames.java in  » Workflow-Engines » obe-1.0 » org » obe » xpdl » 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 » Workflow Engines » obe 1.0 » org.obe.xpdl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package org.obe.xpdl;
02:
03:        /**
04:         * Provides string constants for the OBE XPDL extension tag names.
05:         *
06:         * @author Adrian Price
07:         */
08:        public interface OBENames {
09:            String OBE = "OBE";
10:            String OBE_VERSION = "1.0";
11:            String OBE_NAME = "Open Business Engine";
12:            /**
13:             * Namespace prefix to use for OBE extensions.
14:             */
15:            String OBE_NS_PREFIX = "obe";
16:            String OBE_URL = "http://obe.sourceforge.net/";
17:            /**
18:             * The OBE namespace URI.
19:             */
20:            String OBE_NS_URI = OBE_URL + "2005/OBE1.0";
21:            String OBE_APIDOC_URL = OBE_URL + OBE + OBE_VERSION + "/docs/api/";
22:            String OBE_AUTHOR = OBE_NAME + '(' + OBE_URL + ')';
23:
24:            String ASSIGNMENT_STRATEGY = "AssignmentStrategy";
25:            String BOUNDS = "Bounds";
26:            String CALENDAR = "Calendar";
27:            String COUNT = "Count";
28:            String EVENT = "Event";
29:            String INTERVAL = "Interval";
30:            String RECOVERABLE = "Recoverable";
31:            String TIMER = "Timer";
32:            String PREDICATE = "Predicate";
33:            String X = "x";
34:            String Y = "y";
35:            String WIDTH = "width";
36:            String HEIGHT = "height";
37:            String LOOP = "Loop";
38:            String WHILE = "While";
39:            String UNTIL = "Until";
40:            String FOR_EACH = "ForEach";
41:            String IN = "In";
42:            String EXPAND_GROUPS = "ExpandGroups";
43:            String META_DATA = "meta-data";
44:            String OBE_ASSIGNMENT_STRATEGY = "obe.AssignmentStrategy";
45:            String OBE_BOUNDS = "obe.Bounds";
46:            String OBE_CALENDAR = "obe.Calendar";
47:            String OBE_COMPLETION_STRATEGY = "obe.CompletionStrategy";
48:            String OBE_FORK = "obe.Fork";
49:            String OBE_LOOP = "obe.Loop";
50:            String OBE_SCRIPT = "obe.Script";
51:            String OBE_TOOL_MODE = "obe.ToolMode";
52:            String OBE_TARGET = "obe.Target";
53:            String OBE_EVENT = "obe.Event";
54:            String OBE_TIMER = "obe.Timer";
55:            String OBE_META_DATA = "obe.MetaData";
56:
57:            String SEQUENTIAL_KIND = "SEQUENTIAL";
58:            String PARALLEL_KIND = "PARALLEL";
59:            String UNDEFINED_KIND = "UNDEFINED";
60:            String NORMAL_KIND = "NORMAL";
61:            String WARNING_KIND = "WARNING";
62:            String OVERDUE_KIND = "OVERDUE";
63:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.