Source Code Cross Referenced for BpmTestServiceImpl.java in  » Project-Management » EmForce » org » emforge » test » 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 » Project Management » EmForce » org.emforge.test 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.emforge.test;
002:
003:        import java.util.List;
004:
005:        import org.emforge.BpmService;
006:        import org.emforge.EmForgeException;
007:        import org.emforge.xfer.CommentTO;
008:        import org.emforge.xfer.HistoryTO;
009:        import org.emforge.xfer.StepTO;
010:        import org.emforge.xfer.TaskStatus;
011:        import org.emforge.xfer.TaskTO;
012:        import org.emforge.xfer.WorkflowTO;
013:
014:        public class BpmTestServiceImpl implements  BpmService {
015:
016:            public Boolean addComment(long i_taskId, String i_comment)
017:                    throws EmForgeException {
018:                // TODO Auto-generated method stub
019:                return null;
020:            }
021:
022:            public WorkflowTO addNewWorkflow(byte[] i_workflowContent,
023:                    String i_comment) throws EmForgeException {
024:                // TODO Auto-generated method stub
025:                return null;
026:            }
027:
028:            public TaskTO completeStep(StepTO i_step, String i_transitionName,
029:                    String i_comment) throws EmForgeException {
030:                // TODO Auto-generated method stub
031:                return null;
032:            }
033:
034:            public List<TaskTO> findTasks(String i_milestoneName,
035:                    TaskStatus i_taskStatus, boolean i_includeSubTasks)
036:                    throws EmForgeException {
037:                // TODO Auto-generated method stub
038:                return null;
039:            }
040:
041:            public List<StepTO> getActiveSteps(String i_projectName)
042:                    throws EmForgeException {
043:                // TODO Auto-generated method stub
044:                return null;
045:            }
046:
047:            public StepTO[] getBlockingSteps(long i_taskId)
048:                    throws EmForgeException {
049:                // TODO Auto-generated method stub
050:                return null;
051:            }
052:
053:            public TaskTO[] getBlockingSubTasks(long i_taskId)
054:                    throws EmForgeException {
055:                // TODO Auto-generated method stub
056:                return null;
057:            }
058:
059:            public TaskTO[] getFinishedSubTasks(long i_taskId)
060:                    throws EmForgeException {
061:                // TODO Auto-generated method stub
062:                return null;
063:            }
064:
065:            public StepTO getStep(long i_stepId) throws EmForgeException {
066:                // TODO Auto-generated method stub
067:                return null;
068:            }
069:
070:            public TaskTO getTask(long i_taskId) throws EmForgeException {
071:                // TODO Auto-generated method stub
072:                return null;
073:            }
074:
075:            public CommentTO[] getTaskComments(long i_taskId)
076:                    throws EmForgeException {
077:                // TODO Auto-generated method stub
078:                return null;
079:            }
080:
081:            public HistoryTO[] getTaskHistory(long i_taskId)
082:                    throws EmForgeException {
083:                // TODO Auto-generated method stub
084:                return null;
085:            }
086:
087:            public WorkflowTO[] getUsedWorkflows(String i_name, int i_version)
088:                    throws EmForgeException {
089:                // TODO Auto-generated method stub
090:                return null;
091:            }
092:
093:            public WorkflowTO getWorkflowById(long i_workflowId)
094:                    throws EmForgeException {
095:                // TODO Auto-generated method stub
096:                return null;
097:            }
098:
099:            public WorkflowTO getWorkflowByName(String i_name, int i_version)
100:                    throws EmForgeException {
101:                // TODO Auto-generated method stub
102:                return null;
103:            }
104:
105:            public HistoryTO[] getWorkflowHistory(String i_name, int i_version)
106:                    throws EmForgeException {
107:                // TODO Auto-generated method stub
108:                return null;
109:            }
110:
111:            public StepTO getWorkflowStartStep(String i_name, int i_version,
112:                    String i_projectName) throws EmForgeException {
113:                // TODO Auto-generated method stub
114:                return null;
115:            }
116:
117:            public WorkflowTO[] getWorkflows() throws EmForgeException {
118:                // TODO Auto-generated method stub
119:                return null;
120:            }
121:
122:            public Boolean hasTask(long i_taskId) {
123:                // TODO Auto-generated method stub
124:                return null;
125:            }
126:
127:            public Boolean hasWorkflow(String i_name, int i_version) {
128:                // TODO Auto-generated method stub
129:                return null;
130:            }
131:
132:            public Boolean isPossibleRequestStatus(long i_stepId)
133:                    throws EmForgeException {
134:                // TODO Auto-generated method stub
135:                return null;
136:            }
137:
138:            public Boolean requestStatus(long i_stepId, String i_request)
139:                    throws EmForgeException {
140:                // TODO Auto-generated method stub
141:                return null;
142:            }
143:
144:            public Boolean saveStep(StepTO i_step, String i_comment)
145:                    throws EmForgeException {
146:                // TODO Auto-generated method stub
147:                return null;
148:            }
149:
150:            public Boolean saveTask(TaskTO i_task, String i_comment)
151:                    throws EmForgeException {
152:                // TODO Auto-generated method stub
153:                return null;
154:            }
155:
156:            public TaskTO startSubTask(long i_parentStepId, StepTO i_startStep,
157:                    String i_transitionName, String i_tempPageName)
158:                    throws EmForgeException {
159:                // TODO Auto-generated method stub
160:                return null;
161:            }
162:
163:            public TaskTO startTask(StepTO i_startStep,
164:                    String i_transitionName, String i_tempPageName)
165:                    throws EmForgeException {
166:                // TODO Auto-generated method stub
167:                return null;
168:            }
169:
170:            public Boolean stopTask(long i_taskId, String i_comment)
171:                    throws EmForgeException {
172:                // TODO Auto-generated method stub
173:                return null;
174:            }
175:
176:            public boolean canAddAttachment(long i_taskId) {
177:                // TODO Auto-generated method stub
178:                return false;
179:            }
180:
181:            public boolean canAddNewWorkflow() {
182:                // TODO Auto-generated method stub
183:                return false;
184:            }
185:
186:            public boolean canChangeStep(long i_stepId) {
187:                // TODO Auto-generated method stub
188:                return false;
189:            }
190:
191:            public boolean canChangeTask(long i_taskId) {
192:                // TODO Auto-generated method stub
193:                return false;
194:            }
195:
196:            public boolean canCommentTask(long i_taskId) {
197:                // TODO Auto-generated method stub
198:                return false;
199:            }
200:
201:            public boolean canCompleteStep(long i_stepId) {
202:                // TODO Auto-generated method stub
203:                return false;
204:            }
205:
206:            public boolean canEditTaskDescription(long i_taskId) {
207:                // TODO Auto-generated method stub
208:                return false;
209:            }
210:
211:            public boolean canReadTask(long i_stepId) {
212:                // TODO Auto-generated method stub
213:                return false;
214:            }
215:
216:            public boolean canReassignSteps(long i_taskId) {
217:                // TODO Auto-generated method stub
218:                return false;
219:            }
220:
221:            public boolean canStartNewTask(String i_projectName) {
222:                // TODO Auto-generated method stub
223:                return false;
224:            }
225:
226:            public boolean canStopTask(long i_taskId) {
227:                // TODO Auto-generated method stub
228:                return false;
229:            }
230:
231:            public byte[] getWorkflowIcon(long i_workflowId) {
232:                // TODO Auto-generated method stub
233:                return null;
234:            }
235:
236:            public byte[] getWorkflowImage(long i_workflowId) {
237:                // TODO Auto-generated method stub
238:                return null;
239:            }
240:
241:            public String writeWorkflowImageTable(WorkflowTO i_workflow,
242:                    TaskTO i_task, StepTO i_step) throws EmForgeException {
243:                // TODO Auto-generated method stub
244:                return null;
245:            }
246:
247:            public boolean canChangeStep(StepTO i_step) {
248:                // TODO Auto-generated method stub
249:                return false;
250:            }
251:
252:            public boolean canChangeTask(TaskTO i_task) {
253:                // TODO Auto-generated method stub
254:                return false;
255:            }
256:
257:            public boolean canCompleteStep(StepTO i_step) {
258:                // TODO Auto-generated method stub
259:                return false;
260:            }
261:
262:            public boolean canEditTaskDescription(TaskTO i_task) {
263:                // TODO Auto-generated method stub
264:                return false;
265:            }
266:
267:            public boolean canReassignSteps(TaskTO i_task) {
268:                // TODO Auto-generated method stub
269:                return false;
270:            }
271:
272:            public boolean canStopTask(TaskTO i_task) {
273:                // TODO Auto-generated method stub
274:                return false;
275:            }
276:
277:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.