Java Doc for ServiceManager.java in  » Workflow-Engines » obe-1.0 » org » obe » spi » service » 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.spi.service 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.obe.spi.service.ServiceManager

ServiceManager
final public class ServiceManager (Code)
Provides access to system-level services. The default implementation classes can be overridden either by providing a ServiceManager.properties configuration file, setting system properties, or by passing a java.util.Properties object to the constructor. The property names are defined as in this class as public static final String fields with _TAG suffixes.
author:
   Adrian Price


Field Summary
final public static  StringAPPLICATION_EVENT_BROKER_TAG
     The property name that specifies the ApplicationEventBroker class to use.
final public static  StringASSIGNMENT_STRATEGY_FACTORY_TAG
     The property name that specifies the AssignmentStrategyFactory class to use.
final public static  StringASYNC_MANAGER_TAG
     The property name that specifies the AsyncManager class to use.
final public static  StringCALENDAR_FACTORY_TAG
     The property name that specifies the BusinessCalendar class to use.
final public static  StringCOMPLETION_STRATEGY_FACTORY_TAG
     The property name that specifies the CompletionStrategyFactory class to use.
final public static  StringDATA_CONVERTER_TAG
     The property name that specifies the DataConverter class to use.
final public static  StringEVALUATOR_FACTORY_TAG
     The property name that specifies the EvaluatorFactory class to use.
final public static  StringFUNCTION_FACTORY_TAG
     The property name that specifies the FunctionFactory class to use.
final public static  StringINSTANCE_REPOSITORY_TAG
     The property name that specifies the InstanceRepository class to use.
final public static  StringPARSER_FACTORY_TAG
     The property name that specifies the XPDLParserFactory class to use.
final public static  StringPROCESS_REPOSITORY_TAG
     The property name that specifies the ProcessRepository class to use.
final public static  StringRESOURCE_REPOSITORY_TAG
     The property name that specifies the ResourceRepository class to use.
final public static  StringSECURITY_REALM_TAG
     The property name that specifies the SecurityRealm class to use.
final public static  StringTOOL_AGENT_FACTORY_TAG
     The property name that specifies the ToolAgentFactory class to use.
final public static  StringWORKFLOW_EVENT_BROKER_TAG
     The property name that specifies the WorkflowEventBroker class to use.

Constructor Summary
public  ServiceManager()
     Constructs a service manager with service class name overrides specified by system properties.
public  ServiceManager(Properties overrides)
     Constructs a service manager with service class name overrides specified explicitly.

Method Summary
public synchronized  voidexit()
     De-initializes the various services and repositories.
public  ApplicationEventBrokergetApplicationEventBroker()
     Returns the workflow service that manages inbound application events from external applications.
public  AssignmentStrategyFactorygetAssignmentStrategyFactory()
     Returns the workflow service that manages work item assignment strategies.
public  AsyncManagergetAsyncManager()
     Returns the workflow service that manages asynchronous execution of subflows and process transitions.
public  CalendarFactorygetCalendarFactory()
     Returns the workflow service that provides date arithmetic services.
public  CompletionStrategyFactorygetCompletionStrategyFactory()
     Returns the workflow service that manages activity completion strategies.
public  DataConvertergetDataConverter()
     Returns the workflow service that manages data conversions.
public static  PropertiesgetDefaults()
     Returns the default service manager configuration.
public  WorkflowEnginegetEngine()
     Returns the workflow engine.
public  EvaluatorFactorygetEvaluatorFactory()
     Returns the workflow service that evaluates scripted expressions.
public  FunctionFactorygetFunctionFactory()
     Returns the workflow service that provides extension functions to scripting languages.
public  InstanceRepositorygetInstanceRepository()
     Returns the workflow service that manages process instance persistence.
public  XPDLParserFactorygetParserFactory()
     Returns the workflow service that provides XPDL parser implementations.
public  ProcessRepositorygetProcessRepository()
     Returns the workflow service that manages process definition persistence.
public  ResourceRepositorygetResourceRepository()
     Returns the workflow service that manages XML documents, templates, schemas etc.
public  SecurityRealmgetSecurityRealm()
     Returns the workflow service that manages workflow participants.
public  ToolAgentFactorygetToolAgentFactory()
     Returns the workflow service that manages tool definitions.
public  WorkflowEventBrokergetWorkflowEventBroker()
     Returns the workflow service that brokers workflow event notifications.
public synchronized  voidinit()
     Initializes the various services and repositories.

Field Detail
APPLICATION_EVENT_BROKER_TAG
final public static String APPLICATION_EVENT_BROKER_TAG(Code)
The property name that specifies the ApplicationEventBroker class to use.



ASSIGNMENT_STRATEGY_FACTORY_TAG
final public static String ASSIGNMENT_STRATEGY_FACTORY_TAG(Code)
The property name that specifies the AssignmentStrategyFactory class to use.



ASYNC_MANAGER_TAG
final public static String ASYNC_MANAGER_TAG(Code)
The property name that specifies the AsyncManager class to use.



CALENDAR_FACTORY_TAG
final public static String CALENDAR_FACTORY_TAG(Code)
The property name that specifies the BusinessCalendar class to use.



COMPLETION_STRATEGY_FACTORY_TAG
final public static String COMPLETION_STRATEGY_FACTORY_TAG(Code)
The property name that specifies the CompletionStrategyFactory class to use.



DATA_CONVERTER_TAG
final public static String DATA_CONVERTER_TAG(Code)
The property name that specifies the DataConverter class to use.



EVALUATOR_FACTORY_TAG
final public static String EVALUATOR_FACTORY_TAG(Code)
The property name that specifies the EvaluatorFactory class to use.



FUNCTION_FACTORY_TAG
final public static String FUNCTION_FACTORY_TAG(Code)
The property name that specifies the FunctionFactory class to use.



INSTANCE_REPOSITORY_TAG
final public static String INSTANCE_REPOSITORY_TAG(Code)
The property name that specifies the InstanceRepository class to use.



PARSER_FACTORY_TAG
final public static String PARSER_FACTORY_TAG(Code)
The property name that specifies the XPDLParserFactory class to use.



PROCESS_REPOSITORY_TAG
final public static String PROCESS_REPOSITORY_TAG(Code)
The property name that specifies the ProcessRepository class to use.



RESOURCE_REPOSITORY_TAG
final public static String RESOURCE_REPOSITORY_TAG(Code)
The property name that specifies the ResourceRepository class to use.



SECURITY_REALM_TAG
final public static String SECURITY_REALM_TAG(Code)
The property name that specifies the SecurityRealm class to use.



TOOL_AGENT_FACTORY_TAG
final public static String TOOL_AGENT_FACTORY_TAG(Code)
The property name that specifies the ToolAgentFactory class to use.



WORKFLOW_EVENT_BROKER_TAG
final public static String WORKFLOW_EVENT_BROKER_TAG(Code)
The property name that specifies the WorkflowEventBroker class to use.




Constructor Detail
ServiceManager
public ServiceManager()(Code)
Constructs a service manager with service class name overrides specified by system properties. System properties override both defaults and settings from the ServiceManager.properties configuration file.



ServiceManager
public ServiceManager(Properties overrides)(Code)
Constructs a service manager with service class name overrides specified explicitly. These properties override both defaults and settings from the ServiceManager.properties configuration file.
Parameters:
  overrides - Properties file containing overrides for some or allworkflow service implementation classes.




Method Detail
exit
public synchronized void exit() throws RepositoryException(Code)
De-initializes the various services and repositories. Should only be called once.



getApplicationEventBroker
public ApplicationEventBroker getApplicationEventBroker()(Code)
Returns the workflow service that manages inbound application events from external applications. The application event broker.



getAssignmentStrategyFactory
public AssignmentStrategyFactory getAssignmentStrategyFactory()(Code)
Returns the workflow service that manages work item assignment strategies. The assignment strategy factory.



getAsyncManager
public AsyncManager getAsyncManager()(Code)
Returns the workflow service that manages asynchronous execution of subflows and process transitions. The async execution manager.



getCalendarFactory
public CalendarFactory getCalendarFactory()(Code)
Returns the workflow service that provides date arithmetic services. The business calendar.



getCompletionStrategyFactory
public CompletionStrategyFactory getCompletionStrategyFactory()(Code)
Returns the workflow service that manages activity completion strategies. The activity completion strategy factory.



getDataConverter
public DataConverter getDataConverter()(Code)
Returns the workflow service that manages data conversions. The data converter service.



getDefaults
public static Properties getDefaults()(Code)
Returns the default service manager configuration. Default settings.



getEngine
public WorkflowEngine getEngine()(Code)
Returns the workflow engine. The workflow engine.



getEvaluatorFactory
public EvaluatorFactory getEvaluatorFactory()(Code)
Returns the workflow service that evaluates scripted expressions. The script evaluator repository.



getFunctionFactory
public FunctionFactory getFunctionFactory()(Code)
Returns the workflow service that provides extension functions to scripting languages. The function repository.



getInstanceRepository
public InstanceRepository getInstanceRepository()(Code)
Returns the workflow service that manages process instance persistence. The process instance repository.



getParserFactory
public XPDLParserFactory getParserFactory()(Code)
Returns the workflow service that provides XPDL parser implementations. The parser factory.



getProcessRepository
public ProcessRepository getProcessRepository()(Code)
Returns the workflow service that manages process definition persistence. The process repository.



getResourceRepository
public ResourceRepository getResourceRepository()(Code)
Returns the workflow service that manages XML documents, templates, schemas etc. The XML document repository.



getSecurityRealm
public SecurityRealm getSecurityRealm()(Code)
Returns the workflow service that manages workflow participants. The participant repository.



getToolAgentFactory
public ToolAgentFactory getToolAgentFactory()(Code)
Returns the workflow service that manages tool definitions. The tool repository.



getWorkflowEventBroker
public WorkflowEventBroker getWorkflowEventBroker()(Code)
Returns the workflow service that brokers workflow event notifications. The workflow event broker.



init
public synchronized void init() throws IOException, RepositoryException(Code)
Initializes the various services and repositories. Should only be called once.



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.