Java Doc for SimpleApplicationDirectoryEJB.java in  » Workflow-Engines » wfmopen-2.1.1 » de » danet » an » workflow » tools » util » 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 » wfmopen 2.1.1 » de.danet.an.workflow.tools.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   de.danet.an.workflow.tools.util.SimpleApplicationDirectoryEJB

SimpleApplicationDirectoryEJB
public class SimpleApplicationDirectoryEJB implements SessionBean(Code)
This EJB provides a directory for simple applications. Applications are considered simple in this context if their state can efficiently be represented (and stored) using a single serializable object.

This directory maps a unique id to the activity unique key information of the executing activity and an associated state (and vice versa). Optionally, the assignment time and an assigned resource may be saved in this directory as well.
See Also:   de.danet.an.workflow.util
author:
   Michael Lipp
version:
   $Revision: 1.15 $




Constructor Summary
public  SimpleApplicationDirectoryEJB()
     Creates an instance of SimpleApplicationDirectoryEJB with all attributes initialized to default values.

Method Summary
public  voidejbActivate()
     Not called for stateless session beans.
public  voidejbCreate()
     Create a new EJB.
public  voidejbPassivate()
     Not called for stateless session beans.
public  voidejbRemove()
     Remove this EJB.
public  SimpleApplicationInfoinfoByActivity(ActivityUniqueKey auk)
     Return the information associated with the activity.
public  CollectioninfosByApplication(String applName)
     Return infos associated with a given application.
public  CollectioninfosByKey(String applName, String applInstKey)
     Return the infos associated with the given application name and key.
public  CollectioninfosByResource(String applName, String resourceKey)
     Return infos associated with a given application and resource.
public  SimpleApplicationInfoinstanceInfo(long instId)
     Return the information associated with the application instance.
public  longregisterInstance(String applName, Activity activity, Object state, boolean saveAssignment)
     Register a new application instance.
public  longregisterInstance(String applName, String applInstKey, Activity activity, Object state, boolean saveAssignment)
     Register a new application instance.
public  voidremoveInstance(long instId)
     Remove an application instance.
public  voidsetSessionContext(SessionContext context)
     Save the session context asigned by the container.
public  voidupdateInvokingActivity(long instId, ActivityUniqueKey auk)
     Update the activity associated with the given application instance.
public  voidupdateState(long instId, Object state)
     Update the state information associated with the given application instance id.


Constructor Detail
SimpleApplicationDirectoryEJB
public SimpleApplicationDirectoryEJB()(Code)
Creates an instance of SimpleApplicationDirectoryEJB with all attributes initialized to default values.




Method Detail
ejbActivate
public void ejbActivate() throws EJBException(Code)
Not called for stateless session beans.
See Also:   javax.ejb.SessionBean



ejbCreate
public void ejbCreate() throws CreateException(Code)
Create a new EJB.
throws:
  CreateException - if creation fails



ejbPassivate
public void ejbPassivate() throws EJBException(Code)
Not called for stateless session beans.
See Also:   javax.ejb.SessionBean



ejbRemove
public void ejbRemove()(Code)
Remove this EJB.



infoByActivity
public SimpleApplicationInfo infoByActivity(ActivityUniqueKey auk) throws InvalidKeyException(Code)
Return the information associated with the activity.
Parameters:
  auk - the unique key of the activity an applicationinstance is expected to be registered for.
throws:
  InvalidKeyException - if there is no data available forthe given activity the info



infosByApplication
public Collection infosByApplication(String applName)(Code)
Return infos associated with a given application.
Parameters:
  applName - the application name the infos as collection



infosByKey
public Collection infosByKey(String applName, String applInstKey) throws InvalidKeyException(Code)
Return the infos associated with the given application name and key.
Parameters:
  applName - the application name
Parameters:
  applInstKey - the key associated with the instance the infos or an empty collection if no infoswith the given application name and key exist



infosByResource
public Collection infosByResource(String applName, String resourceKey)(Code)
Return infos associated with a given application and resource.
Parameters:
  applName - the application name
Parameters:
  resourceKey - the resource's key the infos as collection



instanceInfo
public SimpleApplicationInfo instanceInfo(long instId) throws InvalidKeyException(Code)
Return the information associated with the application instance.
Parameters:
  instId - the application instance id previously assignedby SimpleApplicationDirectoryEJB.registerInstance registerInstance
throws:
  InvalidKeyException - if there is no data available forthe given id the info



registerInstance
public long registerInstance(String applName, Activity activity, Object state, boolean saveAssignment)(Code)
Register a new application instance. This method returns a unique key that can be used to SimpleApplicationDirectoryEJB.instanceInfo(long) retrieve , SimpleApplicationDirectoryEJB.updateState(long,Object) update and SimpleApplicationDirectoryEJB.removeInstance(long) remove the instance information.


Parameters:
  applName - the application name
Parameters:
  activity - the invoking activity
Parameters:
  state - the application state
Parameters:
  saveAssignment - if true the assignedresource will be saved to allow searching application instanceswith a particular assignee the instance id




registerInstance
public long registerInstance(String applName, String applInstKey, Activity activity, Object state, boolean saveAssignment)(Code)
Register a new application instance. This method returns a unique key that may be used to
Parameters:
  applName - the application name
Parameters:
  applInstKey - an arbitrary key for this instance, up to 1000characters long
Parameters:
  activity - the invoking activity
Parameters:
  state - the application state
Parameters:
  saveAssignment - if true the assignedresource will be saved to allow searching application instanceswith a particular assignee the instance id



removeInstance
public void removeInstance(long instId)(Code)
Remove an application instance.
Parameters:
  instId - the application instance id previously assignedby SimpleApplicationDirectoryEJB.registerInstance registerInstance



setSessionContext
public void setSessionContext(SessionContext context)(Code)
Save the session context asigned by the container.
Parameters:
  context - the context



updateInvokingActivity
public void updateInvokingActivity(long instId, ActivityUniqueKey auk) throws InvalidKeyException(Code)
Update the activity associated with the given application instance. This is useful if an application instance is started by one tool (agent) invocation and stopped by another.

Be careful to ensure the eventual termination of the application. If the creating activity has completed, the terminate method of the tool agent that started the application will not be called on abnormal process completion. So, if a process is terminated abnormally and the starting activity is closed and the stopping activity has not yet been started (and associated with the application) the application will not be stopped. This should normally not be a problem for simple applications.

As a convenience, any application information that is still registered after a process completion will automatically be deleted.

The new activity must belong to the same process as the activity that initially created the application instance.
Parameters:
  instId - the application instance id previously assignedby SimpleApplicationDirectoryEJB.registerInstance registerInstance
Parameters:
  auk - the new activity's unique key. May benull if the application instance is temporarilynot associated with an activity.
throws:
  InvalidKeyException - if there is no application instancewith the given id




updateState
public void updateState(long instId, Object state) throws InvalidKeyException(Code)
Update the state information associated with the given application instance id.
Parameters:
  instId - the application instance id previously assignedby SimpleApplicationDirectoryEJB.registerInstance registerInstance
Parameters:
  state - the new state
throws:
  InvalidKeyException - if there is no application instancewith the given id



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.