Source Code Cross Referenced for WorkflowDocumentActions.java in  » ERP-CRM-Financial » Kuali-Financial-System » edu » iu » uis » eden » server » 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 » ERP CRM Financial » Kuali Financial System » edu.iu.uis.eden.server 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 2005-2006 The Kuali Foundation.
003:         * 
004:         * 
005:         * Licensed under the Educational Community License, Version 1.0 (the "License");
006:         * you may not use this file except in compliance with the License.
007:         * You may obtain a copy of the License at
008:         * 
009:         * http://www.opensource.org/licenses/ecl1.php
010:         * 
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */
017:        package edu.iu.uis.eden.server;
018:
019:        import java.rmi.Remote;
020:        import java.rmi.RemoteException;
021:
022:        import edu.iu.uis.eden.clientapp.WorkflowDocument;
023:        import edu.iu.uis.eden.clientapp.vo.AdHocRevokeVO;
024:        import edu.iu.uis.eden.clientapp.vo.DocumentContentVO;
025:        import edu.iu.uis.eden.clientapp.vo.MovePointVO;
026:        import edu.iu.uis.eden.clientapp.vo.ResponsiblePartyVO;
027:        import edu.iu.uis.eden.clientapp.vo.ReturnPointVO;
028:        import edu.iu.uis.eden.clientapp.vo.RouteHeaderVO;
029:        import edu.iu.uis.eden.clientapp.vo.UserIdVO;
030:        import edu.iu.uis.eden.clientapp.vo.WorkgroupIdVO;
031:        import edu.iu.uis.eden.exception.WorkflowException;
032:
033:        /**
034:         * A remotable service which provides an API for actions on documents.
035:         * 
036:         * @see WorkflowDocument
037:         *
038:         * @author rkirkend
039:         * @author ewestfal
040:         */
041:        public interface WorkflowDocumentActions extends Remote {
042:
043:            public RouteHeaderVO acknowledgeDocument(UserIdVO userId,
044:                    RouteHeaderVO routeHeader, String annotation)
045:                    throws RemoteException, WorkflowException;
046:
047:            public RouteHeaderVO approveDocument(UserIdVO userId,
048:                    RouteHeaderVO routeHeader, String annotation)
049:                    throws RemoteException, WorkflowException;
050:
051:            public RouteHeaderVO appSpecificRouteDocument(UserIdVO userId,
052:                    RouteHeaderVO routeHeader, String actionRequested,
053:                    String nodeName, String annotation,
054:                    ResponsiblePartyVO responsibleParty,
055:                    String responsibilityDesc, boolean ignorePrevActions)
056:                    throws RemoteException, WorkflowException;
057:
058:            public RouteHeaderVO cancelDocument(UserIdVO userId,
059:                    RouteHeaderVO routeHeader, String annotation)
060:                    throws RemoteException, WorkflowException;
061:
062:            public RouteHeaderVO clearFYIDocument(UserIdVO userId,
063:                    RouteHeaderVO routeHeader) throws RemoteException,
064:                    WorkflowException;
065:
066:            public RouteHeaderVO completeDocument(UserIdVO userId,
067:                    RouteHeaderVO routeHeader, String annotation)
068:                    throws RemoteException, WorkflowException;
069:
070:            public RouteHeaderVO createDocument(UserIdVO userId,
071:                    RouteHeaderVO routeHeader) throws RemoteException,
072:                    WorkflowException;
073:
074:            public RouteHeaderVO disapproveDocument(UserIdVO userId,
075:                    RouteHeaderVO routeHeader, String annotation)
076:                    throws RemoteException, WorkflowException;
077:
078:            public RouteHeaderVO routeDocument(UserIdVO userId,
079:                    RouteHeaderVO routeHeader, String annotation)
080:                    throws RemoteException, WorkflowException;
081:
082:            public RouteHeaderVO saveRoutingData(UserIdVO userId,
083:                    RouteHeaderVO routeHeader) throws RemoteException,
084:                    WorkflowException;
085:
086:            public RouteHeaderVO saveDocument(UserIdVO userId,
087:                    RouteHeaderVO routeHeader, String annotation)
088:                    throws RemoteException, WorkflowException;
089:
090:            public void deleteDocument(UserIdVO userId,
091:                    RouteHeaderVO routeHeader) throws RemoteException,
092:                    WorkflowException;
093:
094:            public void logDocumentAction(UserIdVO userId,
095:                    RouteHeaderVO routeHeader, String annotation)
096:                    throws RemoteException, WorkflowException;
097:
098:            public RouteHeaderVO super UserApprove(UserIdVO userId,
099:                    RouteHeaderVO routeHeader, String annotation)
100:                    throws RemoteException, WorkflowException;
101:
102:            public RouteHeaderVO super UserActionRequestApprove(UserIdVO userId,
103:                    RouteHeaderVO routeHeaderVO, Long actionRequestId,
104:                    String annotation) throws RemoteException,
105:                    WorkflowException;
106:
107:            public RouteHeaderVO super UserDisapprove(UserIdVO userId,
108:                    RouteHeaderVO routeHeader, String annotation)
109:                    throws RemoteException, WorkflowException;
110:
111:            public RouteHeaderVO super UserCancel(UserIdVO userId,
112:                    RouteHeaderVO routeHeader, String annotation)
113:                    throws RemoteException, WorkflowException;
114:
115:            public DocumentContentVO saveDocumentContent(
116:                    DocumentContentVO documentContent) throws RemoteException,
117:                    WorkflowException;
118:
119:            // Deprecated as of 2.1 //
120:
121:            /**
122:             * @deprecated use blanketApproveToNodes instead
123:             */
124:            public RouteHeaderVO blanketApproval(UserIdVO userId,
125:                    RouteHeaderVO routeHeader, String annotation,
126:                    Integer routeLevel) throws RemoteException,
127:                    WorkflowException;
128:
129:            /**
130:             * @deprecated use returnDocumentToPreviousNode instead
131:             */
132:            public RouteHeaderVO returnDocumentToPreviousRouteLevel(
133:                    UserIdVO userId, RouteHeaderVO routeHeader,
134:                    Integer destRouteLevel, String annotation)
135:                    throws RemoteException, WorkflowException;
136:
137:            // Introduced in 2.1 //
138:
139:            public RouteHeaderVO blanketApprovalToNodes(UserIdVO userId,
140:                    RouteHeaderVO routeHeader, String annotation,
141:                    String[] nodeNames) throws RemoteException,
142:                    WorkflowException;
143:
144:            public RouteHeaderVO returnDocumentToPreviousNode(UserIdVO userId,
145:                    RouteHeaderVO routeHeader, ReturnPointVO returnPoint,
146:                    String annotation) throws RemoteException,
147:                    WorkflowException;
148:
149:            public RouteHeaderVO takeWorkgroupAuthority(UserIdVO userId,
150:                    RouteHeaderVO routeHeader, WorkgroupIdVO workgroupId,
151:                    String annotation) throws RemoteException,
152:                    WorkflowException;
153:
154:            public RouteHeaderVO releaseWorkgroupAuthority(UserIdVO userId,
155:                    RouteHeaderVO routeHeader, WorkgroupIdVO workgroupId,
156:                    String annotation) throws RemoteException,
157:                    WorkflowException;
158:
159:            public RouteHeaderVO moveDocument(UserIdVO userId,
160:                    RouteHeaderVO routeHeader, MovePointVO movePoint,
161:                    String annotation) throws RemoteException,
162:                    WorkflowException;
163:
164:            // Introduced in 2.2.2 //
165:
166:            /**
167:             * Revokes AdHoc request(s) according to the given AppSpecificRevokeVO which is passed in. 
168:             */
169:            public RouteHeaderVO revokeAdHocRequests(UserIdVO userId,
170:                    RouteHeaderVO routeHeader, AdHocRevokeVO revoke,
171:                    String annotation) throws RemoteException,
172:                    WorkflowException;
173:
174:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.