Source Code Cross Referenced for BPELProcessDAO.java in  » Workflow-Engines » bexee » bexee » dao » 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 » bexee » bexee.dao 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * $Id: BPELProcessDAO.java,v 1.8 2004/12/06 07:53:30 fornp1 Exp $
03:         *
04:         * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
05:         * Berne University of Applied Sciences
06:         * School of Engineering and Information Technology
07:         * All rights reserved.
08:         */
09:        package bexee.dao;
10:
11:        import bexee.model.process.BPELProcess;
12:
13:        /**
14:         * The <code>BPELProcessDAO</code> abstracts the underlying data access
15:         * implementation for <code>BPELProcess</code> objects to enable transparent
16:         * access to the data source.
17:         * 
18:         * @version $Revision: 1.8 $, $Date: 2004/12/06 07:53:30 $
19:         * @author Patric Fornasier
20:         * @author Pawel Kowalski
21:         */
22:        public interface BPELProcessDAO {
23:
24:            /**
25:             * Inserts a new <code>BPELProcess</code>.
26:             * 
27:             * @param process
28:             *            the <code>BPELProcess</code> to insert
29:             * @return the name of the <code>BPELProcess</code> which serves as a
30:             *         unique identifier
31:             * @throws DAOException
32:             *             to indicate that there went something wrong
33:             */
34:            public String insert(BPELProcess process) throws DAOException;
35:
36:            /**
37:             * Finds a <code>BPELProcess</code> given its name.
38:             * 
39:             * @param name
40:             *            the name of the <code>BPELProcess</code> to find
41:             * @return the <code>BPELProcess</code> or null if no
42:             *         <code>BPELProcess</code> matches the given name
43:             * @throws DAOException
44:             *             to indicate that there went something wrong
45:             */
46:            public BPELProcess find(String name) throws DAOException;
47:
48:            /**
49:             * Deletes a <code>BPELProcess</code> given its name.
50:             * 
51:             * @param name
52:             *            the name of the <code>BPELProcess</code> to delete
53:             * @throws DAOException
54:             *             to indicate that there went something wrong
55:             */
56:            public void delete(String name) throws DAOException;
57:
58:            /**
59:             * Deletes a <b>*ALL* </b> <code>BPELProcess</code> es.
60:             * 
61:             * @throws DAOException
62:             *             to indicate that there went something wrong
63:             */
64:            public void deleteAll() throws DAOException;
65:
66:            /**
67:             * Updates an existing <code>BPELProcess</code>.
68:             * 
69:             * @param process
70:             *            the <code>BPELProcess</code> to update
71:             * @throws DAOException
72:             *             to indicate that there went something wrong
73:             */
74:            public void update(BPELProcess process) throws DAOException;
75:
76:            /**
77:             * Replaces an existing <code>BPELProcess</code>.
78:             * <p>
79:             * If the process doesn't exist it will be <code>insert</code> ed,
80:             * otherwise it will be <code>update</code>d.
81:             * 
82:             * @param process
83:             *            the <code>BPELProcess</code> to replace
84:             * @return the id of the <code>BPELProcess</code>. This will be a new id
85:             *         in case the <code>BPELProcess</code> is <code>insert</code>
86:             *         ed or the id of the <code>update</code> d
87:             *         <code>BPELProcess</code>.
88:             * @throws DAOException
89:             *             to indicate that there went something wrong
90:             */
91:            public String replace(BPELProcess process) throws DAOException;
92:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.