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


java.lang.Object
   org.obe.engine.repository.AbstractRepository
      org.obe.event.BasicWorkflowEventBroker

BasicWorkflowEventBroker
final public class BasicWorkflowEventBroker extends AbstractRepository implements WorkflowEventBroker(Code)
Provides access to OBE run-time events. The event object passed to a listener provides access to the entity that was the source of the event. The listener may call methods on that entity (thus potentially affecting the entity's state and causing further notifications). When running in a transactional environment (such as the J2EE server), listeners are also able to veto the transaction, by calling setRollbackOnly() on the UserTransaction object. At present, exceptions thrown by listener methods are logged and ignored; this behaviour may well change.
author:
   Adrian Price



Constructor Summary
public  BasicWorkflowEventBroker(ServiceManager svcMgr)
    

Method Summary
public  voidaddActivityInstanceListener(ActivityInstanceListener listener, int mask)
     Subscribes to activity instance events.
public  voidaddActivityInstanceListener(ApplicationEventListener listener, int mask)
     Subscribes to activity instance events.
public  voidaddAttributeInstanceListener(AttributeInstanceListener listener, int mask)
     Subscribes to attribute instance events.
public  voidaddAttributeInstanceListener(ApplicationEventListener listener, int mask)
     Subscribes to attribute instance events.
public  voidaddPackageListener(PackageListener listener, int mask)
     Subscribes to package events.
public  voidaddPackageListener(ApplicationEventListener listener, int mask)
     Subscribes to package events.
public  voidaddProcessDefinitionListener(ProcessDefinitionListener listener, int mask)
     Subscribes to process definition events.
public  voidaddProcessDefinitionListener(ApplicationEventListener listener, int mask)
     Subscribes to process definition events.
public  voidaddProcessInstanceListener(ProcessInstanceListener listener, int mask)
     Subscribes to process instance events.
public  voidaddProcessInstanceListener(ApplicationEventListener listener, int mask)
     Subscribes to process instance events.
public  voidaddTransitionListener(TransitionListener listener, int mask)
     Subscribes to transition events.
public  voidaddTransitionListener(ApplicationEventListener listener, int mask)
     Subscribes to transition events.
public  voidaddWorkItemListener(WorkItemListener listener, int mask)
     Subscribes to work item events.
public  voidaddWorkItemListener(ApplicationEventListener listener, int mask)
     Subscribes to work item events.
protected synchronized  voidclear()
    
public  voidfireActivityInstanceAborted(ActivityInstance src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireActivityInstanceCompleted(ActivityInstance src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireActivityInstanceCreated(ActivityInstance src, Activity defn)
     Internal use only - do not call.
public  voidfireActivityInstanceEvent(ActivityInstance src, int id, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireActivityInstanceResumed(ActivityInstance src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireActivityInstanceStarted(ActivityInstance src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireActivityInstanceStopped(ActivityInstance src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireActivityInstanceSuspended(ActivityInstance src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireActivityInstanceTerminated(ActivityInstance src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireAttributeInstanceCreated(AttributeInstance src, DataField defn)
     Internal use only - do not call.
public  voidfireAttributeInstanceDeleted(AttributeInstance src, DataField defn)
     Internal use only - do not call.
public  voidfireAttributeInstanceUpdated(AttributeInstance src, DataField defn, Object previousValue)
     Internal use only - do not call.
public  voidfirePackageCreated(XPDLPackage src)
     Internal use only - do not call.
public  voidfirePackageDeleted(XPDLPackage src)
     Internal use only - do not call.
public  voidfirePackageUpdated(XPDLPackage src)
     Internal use only - do not call.
public  voidfireProcessDefinitionCreated(WorkflowProcess src)
     Internal use only - do not call.
public  voidfireProcessDefinitionDeleted(WorkflowProcess src)
     Internal use only - do not call.
public  voidfireProcessDefinitionDisabled(WorkflowProcess src)
     Internal use only - do not call.
public  voidfireProcessDefinitionEnabled(WorkflowProcess src)
     Internal use only - do not call.
public  voidfireProcessDefinitionUpdated(WorkflowProcess src)
     Internal use only - do not call.
public  voidfireProcessInstanceAborted(ProcessInstance src, WorkflowProcess defn, int previousState)
     Internal use only - do not call.
public  voidfireProcessInstanceCompleted(ProcessInstance src, WorkflowProcess defn, int previousState)
     Internal use only - do not call.
public  voidfireProcessInstanceCreated(ProcessInstance src, WorkflowProcess defn)
     Internal use only - do not call.
public  voidfireProcessInstanceDeleted(ProcessInstance src, WorkflowProcess defn, int previousState)
     Internal use only - do not call.
public  voidfireProcessInstanceEvent(ProcessInstance src, int id, WorkflowProcess defn, int previousState)
     Internal use only - do not call.
public  voidfireProcessInstanceResumed(ProcessInstance src, WorkflowProcess defn, int previousState)
     Internal use only - do not call.
public  voidfireProcessInstanceStarted(ProcessInstance src, WorkflowProcess defn, int previousState)
     Internal use only - do not call.
public  voidfireProcessInstanceSuspended(ProcessInstance src, WorkflowProcess defn, int previousState)
     Internal use only - do not call.
public  voidfireProcessInstanceTerminated(ProcessInstance src, WorkflowProcess defn, int previousState)
     Internal use only - do not call.
public  voidfireTransitionEvent(ActivityInstance activityInstance, int id, Transition defn)
     Internal use only - do not call.
public  voidfireTransitionFired(ActivityInstance activityInstance, Transition defn)
     Internal use only - do not call.
public  voidfireWorkItemAborted(WorkItem src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireWorkItemAssigned(WorkItem src, Activity defn)
     Internal use only - do not call.
public  voidfireWorkItemCompleted(WorkItem src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireWorkItemCreated(WorkItem src, Activity defn)
     Internal use only - do not call.
public  voidfireWorkItemEvent(WorkItem src, int id, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireWorkItemResumed(WorkItem src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireWorkItemStarted(WorkItem src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireWorkItemStopped(WorkItem src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireWorkItemSuspended(WorkItem src, Activity defn, int previousState)
     Internal use only - do not call.
public  voidfireWorkItemTerminated(WorkItem src, Activity defn, int previousState)
     Internal use only - do not call.
protected  LoggetLogger()
    
public  StringgetServiceName()
    
public synchronized  voidinit()
    
public  voidremoveActivityInstanceListener(ActivityInstanceListener listener)
     Unsubscribes from activity instance events.
public  voidremoveActivityInstanceListener(ApplicationEventListener listener)
     Unsubscribes from activity instance events.
public  voidremoveAttributeInstanceListener(AttributeInstanceListener listener)
     Unsubscribes from attribute instance events.
public  voidremoveAttributeInstanceListener(ApplicationEventListener listener)
     Unsubscribes from attribute instance events.
public  voidremovePackageListener(PackageListener listener)
     Unsubscribes from package events.
public  voidremovePackageListener(ApplicationEventListener listener)
     Unsubscribes from package events.
public  voidremoveProcessDefinitionListener(ProcessDefinitionListener listener)
     Unsubscribes from process definition events.
public  voidremoveProcessDefinitionListener(ApplicationEventListener listener)
     Unsubscribes from process definition events.
public  voidremoveProcessInstanceListener(ProcessInstanceListener listener)
     Unsubscribes from process instance events.
public  voidremoveProcessInstanceListener(ApplicationEventListener listener)
     Unsubscribes from process instance events.
public  voidremoveTransitionListener(WorkItemListener listener)
     Unsubscribes from transition events.
public  voidremoveTransitionListener(ApplicationEventListener listener)
     Unsubscribes from transition events.
public  voidremoveWorkItemListener(WorkItemListener listener)
     Unsubscribes from work item events.
public  voidremoveWorkItemListener(ApplicationEventListener listener)
     Unsubscribes from work item events.


Constructor Detail
BasicWorkflowEventBroker
public BasicWorkflowEventBroker(ServiceManager svcMgr)(Code)




Method Detail
addActivityInstanceListener
public void addActivityInstanceListener(ActivityInstanceListener listener, int mask)(Code)
Subscribes to activity instance events.
Parameters:
  listener - The activity instance event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addActivityInstanceListener
public void addActivityInstanceListener(ApplicationEventListener listener, int mask)(Code)
Subscribes to activity instance events.
Parameters:
  listener - The activity instance event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addAttributeInstanceListener
public void addAttributeInstanceListener(AttributeInstanceListener listener, int mask)(Code)
Subscribes to attribute instance events.
Parameters:
  listener - The attribute instance event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addAttributeInstanceListener
public void addAttributeInstanceListener(ApplicationEventListener listener, int mask)(Code)
Subscribes to attribute instance events.
Parameters:
  listener - The attribute instance event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addPackageListener
public void addPackageListener(PackageListener listener, int mask)(Code)
Subscribes to package events.
Parameters:
  listener - The package event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addPackageListener
public void addPackageListener(ApplicationEventListener listener, int mask)(Code)
Subscribes to package events.
Parameters:
  listener - The package event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addProcessDefinitionListener
public void addProcessDefinitionListener(ProcessDefinitionListener listener, int mask)(Code)
Subscribes to process definition events.
Parameters:
  listener - The process definition event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addProcessDefinitionListener
public void addProcessDefinitionListener(ApplicationEventListener listener, int mask)(Code)
Subscribes to process definition events.
Parameters:
  listener - The process definition event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addProcessInstanceListener
public void addProcessInstanceListener(ProcessInstanceListener listener, int mask)(Code)
Subscribes to process instance events.
Parameters:
  listener - The process instance event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addProcessInstanceListener
public void addProcessInstanceListener(ApplicationEventListener listener, int mask)(Code)
Subscribes to process instance events.
Parameters:
  listener - The process instance event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addTransitionListener
public void addTransitionListener(TransitionListener listener, int mask)(Code)
Subscribes to transition events.
Parameters:
  listener - The transition event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addTransitionListener
public void addTransitionListener(ApplicationEventListener listener, int mask)(Code)
Subscribes to transition events.
Parameters:
  listener - The transition event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addWorkItemListener
public void addWorkItemListener(WorkItemListener listener, int mask)(Code)
Subscribes to work item events.
Parameters:
  listener - The work item event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



addWorkItemListener
public void addWorkItemListener(ApplicationEventListener listener, int mask)(Code)
Subscribes to work item events.
Parameters:
  listener - The work item event listener to add.
Parameters:
  mask - Bitmask to specify which events to notify.



clear
protected synchronized void clear()(Code)



fireActivityInstanceAborted
public void fireActivityInstanceAborted(ActivityInstance src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireActivityInstanceCompleted
public void fireActivityInstanceCompleted(ActivityInstance src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireActivityInstanceCreated
public void fireActivityInstanceCreated(ActivityInstance src, Activity defn)(Code)
Internal use only - do not call.



fireActivityInstanceEvent
public void fireActivityInstanceEvent(ActivityInstance src, int id, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireActivityInstanceResumed
public void fireActivityInstanceResumed(ActivityInstance src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireActivityInstanceStarted
public void fireActivityInstanceStarted(ActivityInstance src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireActivityInstanceStopped
public void fireActivityInstanceStopped(ActivityInstance src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireActivityInstanceSuspended
public void fireActivityInstanceSuspended(ActivityInstance src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireActivityInstanceTerminated
public void fireActivityInstanceTerminated(ActivityInstance src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireAttributeInstanceCreated
public void fireAttributeInstanceCreated(AttributeInstance src, DataField defn)(Code)
Internal use only - do not call.



fireAttributeInstanceDeleted
public void fireAttributeInstanceDeleted(AttributeInstance src, DataField defn)(Code)
Internal use only - do not call.



fireAttributeInstanceUpdated
public void fireAttributeInstanceUpdated(AttributeInstance src, DataField defn, Object previousValue)(Code)
Internal use only - do not call.



firePackageCreated
public void firePackageCreated(XPDLPackage src)(Code)
Internal use only - do not call.



firePackageDeleted
public void firePackageDeleted(XPDLPackage src)(Code)
Internal use only - do not call.



firePackageUpdated
public void firePackageUpdated(XPDLPackage src)(Code)
Internal use only - do not call.



fireProcessDefinitionCreated
public void fireProcessDefinitionCreated(WorkflowProcess src)(Code)
Internal use only - do not call.



fireProcessDefinitionDeleted
public void fireProcessDefinitionDeleted(WorkflowProcess src)(Code)
Internal use only - do not call.



fireProcessDefinitionDisabled
public void fireProcessDefinitionDisabled(WorkflowProcess src)(Code)
Internal use only - do not call.



fireProcessDefinitionEnabled
public void fireProcessDefinitionEnabled(WorkflowProcess src)(Code)
Internal use only - do not call.



fireProcessDefinitionUpdated
public void fireProcessDefinitionUpdated(WorkflowProcess src)(Code)
Internal use only - do not call.



fireProcessInstanceAborted
public void fireProcessInstanceAborted(ProcessInstance src, WorkflowProcess defn, int previousState)(Code)
Internal use only - do not call.



fireProcessInstanceCompleted
public void fireProcessInstanceCompleted(ProcessInstance src, WorkflowProcess defn, int previousState)(Code)
Internal use only - do not call.



fireProcessInstanceCreated
public void fireProcessInstanceCreated(ProcessInstance src, WorkflowProcess defn)(Code)
Internal use only - do not call.



fireProcessInstanceDeleted
public void fireProcessInstanceDeleted(ProcessInstance src, WorkflowProcess defn, int previousState)(Code)
Internal use only - do not call.



fireProcessInstanceEvent
public void fireProcessInstanceEvent(ProcessInstance src, int id, WorkflowProcess defn, int previousState)(Code)
Internal use only - do not call.



fireProcessInstanceResumed
public void fireProcessInstanceResumed(ProcessInstance src, WorkflowProcess defn, int previousState)(Code)
Internal use only - do not call.



fireProcessInstanceStarted
public void fireProcessInstanceStarted(ProcessInstance src, WorkflowProcess defn, int previousState)(Code)
Internal use only - do not call.



fireProcessInstanceSuspended
public void fireProcessInstanceSuspended(ProcessInstance src, WorkflowProcess defn, int previousState)(Code)
Internal use only - do not call.



fireProcessInstanceTerminated
public void fireProcessInstanceTerminated(ProcessInstance src, WorkflowProcess defn, int previousState)(Code)
Internal use only - do not call.



fireTransitionEvent
public void fireTransitionEvent(ActivityInstance activityInstance, int id, Transition defn)(Code)
Internal use only - do not call.



fireTransitionFired
public void fireTransitionFired(ActivityInstance activityInstance, Transition defn)(Code)
Internal use only - do not call.



fireWorkItemAborted
public void fireWorkItemAborted(WorkItem src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireWorkItemAssigned
public void fireWorkItemAssigned(WorkItem src, Activity defn)(Code)
Internal use only - do not call.



fireWorkItemCompleted
public void fireWorkItemCompleted(WorkItem src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireWorkItemCreated
public void fireWorkItemCreated(WorkItem src, Activity defn)(Code)
Internal use only - do not call.



fireWorkItemEvent
public void fireWorkItemEvent(WorkItem src, int id, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireWorkItemResumed
public void fireWorkItemResumed(WorkItem src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireWorkItemStarted
public void fireWorkItemStarted(WorkItem src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireWorkItemStopped
public void fireWorkItemStopped(WorkItem src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireWorkItemSuspended
public void fireWorkItemSuspended(WorkItem src, Activity defn, int previousState)(Code)
Internal use only - do not call.



fireWorkItemTerminated
public void fireWorkItemTerminated(WorkItem src, Activity defn, int previousState)(Code)
Internal use only - do not call.



getLogger
protected Log getLogger()(Code)



getServiceName
public String getServiceName()(Code)



init
public synchronized void init() throws IOException, RepositoryException(Code)



removeActivityInstanceListener
public void removeActivityInstanceListener(ActivityInstanceListener listener)(Code)
Unsubscribes from activity instance events.
Parameters:
  listener - The activity instance event listener to remove.



removeActivityInstanceListener
public void removeActivityInstanceListener(ApplicationEventListener listener)(Code)
Unsubscribes from activity instance events.
Parameters:
  listener - The activity instance event listener to remove.



removeAttributeInstanceListener
public void removeAttributeInstanceListener(AttributeInstanceListener listener)(Code)
Unsubscribes from attribute instance events.
Parameters:
  listener - The attribute instance event listener to remove.



removeAttributeInstanceListener
public void removeAttributeInstanceListener(ApplicationEventListener listener)(Code)
Unsubscribes from attribute instance events.
Parameters:
  listener - The attribute instance event listener to remove.



removePackageListener
public void removePackageListener(PackageListener listener)(Code)
Unsubscribes from package events.
Parameters:
  listener - The package event listener to remove.



removePackageListener
public void removePackageListener(ApplicationEventListener listener)(Code)
Unsubscribes from package events.
Parameters:
  listener - The package event listener to remove.



removeProcessDefinitionListener
public void removeProcessDefinitionListener(ProcessDefinitionListener listener)(Code)
Unsubscribes from process definition events.
Parameters:
  listener - The process definition event listener to remove.



removeProcessDefinitionListener
public void removeProcessDefinitionListener(ApplicationEventListener listener)(Code)
Unsubscribes from process definition events.
Parameters:
  listener - The process definition event listener to remove.



removeProcessInstanceListener
public void removeProcessInstanceListener(ProcessInstanceListener listener)(Code)
Unsubscribes from process instance events.
Parameters:
  listener - The process instance event listener to remove.



removeProcessInstanceListener
public void removeProcessInstanceListener(ApplicationEventListener listener)(Code)
Unsubscribes from process instance events.
Parameters:
  listener - The process instance event listener to remove.



removeTransitionListener
public void removeTransitionListener(WorkItemListener listener)(Code)
Unsubscribes from transition events.
Parameters:
  listener - The transition event listener to remove.



removeTransitionListener
public void removeTransitionListener(ApplicationEventListener listener)(Code)
Unsubscribes from transition events.
Parameters:
  listener - The transition event listener to remove.



removeWorkItemListener
public void removeWorkItemListener(WorkItemListener listener)(Code)
Unsubscribes from work item events.
Parameters:
  listener - The work item event listener to remove.



removeWorkItemListener
public void removeWorkItemListener(ApplicationEventListener listener)(Code)
Unsubscribes from work item events.
Parameters:
  listener - The work item event listener to remove.



Fields inherited from org.obe.engine.repository.AbstractRepository
final protected static String NOT_FOUND_MSG(Code)(Java Doc)
final protected static String SERVICE(Code)(Java Doc)
final protected ServiceManager _svcMgr(Code)(Java Doc)

Methods inherited from org.obe.engine.repository.AbstractRepository
protected synchronized void clear()(Code)(Java Doc)
protected void createEntry(AbstractMetaData metaData) throws RepositoryException(Code)(Java Doc)
protected synchronized Entry createEntry(String key, AbstractMetaData metaData, Object instance) throws RepositoryException(Code)(Java Doc)
protected synchronized void deleteEntry(String key) throws RepositoryException(Code)(Java Doc)
public synchronized void exit()(Code)(Java Doc)
protected Entry[] findEntries()(Code)(Java Doc)
protected Entry findEntry(String key, boolean throwException) throws RepositoryException(Code)(Java Doc)
protected Object findInstance(String key, boolean throwException) throws RepositoryException(Code)(Java Doc)
protected synchronized AbstractMetaData[] findMetaData()(Code)(Java Doc)
protected AbstractMetaData findMetaData(String key, boolean throwException) throws RepositoryException(Code)(Java Doc)
protected AbstractMetaData findObjectType(String className) throws RepositoryException(Code)(Java Doc)
protected AbstractMetaData[] findObjectTypes()(Code)(Java Doc)
protected String getConfigurationFileName()(Code)(Java Doc)
protected static Log getLog(Class clazz)(Code)(Java Doc)
abstract protected Log getLogger()(Code)(Java Doc)
final public ServiceManager getServiceManager()(Code)(Java Doc)
public synchronized void init() throws IOException, RepositoryException(Code)(Java Doc)
public synchronized boolean isInitialized()(Code)(Java Doc)
protected synchronized void load() throws RepositoryException, IOException(Code)(Java Doc)
protected void registerObjectType(AbstractMetaData objectType) throws ObjectAlreadyExistsException(Code)(Java Doc)
public synchronized void store()(Code)(Java Doc)
protected Entry updateEntry(String key, AbstractMetaData metaData) throws RepositoryException(Code)(Java Doc)
protected synchronized Entry updateEntry(String key, AbstractMetaData metaData, Object implementation) throws RepositoryException(Code)(Java Doc)

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.