01: /*
02: * $Id: StartActivityJob.java,v 1.3 2003/11/26 07:24:17 ajzeneski Exp $
03: *
04: * Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org
05: *
06: * Permission is hereby granted, free of charge, to any person obtaining a
07: * copy of this software and associated documentation files (the "Software"),
08: * to deal in the Software without restriction, including without limitation
09: * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10: * and/or sell copies of the Software, and to permit persons to whom the
11: * Software is furnished to do so, subject to the following conditions:
12: *
13: * The above copyright notice and this permission notice shall be included
14: * in all copies or substantial portions of the Software.
15: *
16: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17: * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19: * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20: * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
21: * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
22: * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23: *
24: */
25: package org.ofbiz.workflow.client;
26:
27: import java.util.Date;
28: import java.util.HashMap;
29:
30: import org.ofbiz.base.util.Debug;
31: import org.ofbiz.service.GenericRequester;
32: import org.ofbiz.service.job.AbstractJob;
33: import org.ofbiz.workflow.WfActivity;
34:
35: /**
36: * Workflow Client API - Start Activity Async-Job
37: *
38: * @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a>
39: * @version $Revision: 1.3 $
40: * @since 2.0
41: */
42: public class StartActivityJob extends AbstractJob {
43:
44: public static final String module = StartActivityJob.class
45: .getName();
46:
47: protected WfActivity activity = null;
48: protected GenericRequester requester = null;
49:
50: public StartActivityJob(WfActivity activity) {
51: this (activity, null);
52: }
53:
54: public StartActivityJob(WfActivity activity,
55: GenericRequester requester) {
56: super (activity.toString());
57: this .activity = activity;
58: this .requester = requester;
59: runtime = new Date().getTime();
60: if (Debug.verboseOn())
61: Debug.logVerbose("Created new StartActivityJob : "
62: + activity, module);
63: }
64:
65: protected void finish() {
66: runtime = -1;
67: }
68:
69: /**
70: * @see org.ofbiz.service.job.Job#exec()
71: */
72: public void exec() {
73: String activityIds = null;
74: try {
75: Debug.logVerbose("Executing job now : " + activity, module);
76: activity.activate();
77: if (requester != null)
78: requester.receiveResult(new HashMap());
79: } catch (Exception e) {
80: Debug.logError(e, "Start Activity [" + activity
81: + "] Failed", module);
82: if (requester != null)
83: requester.receiveThrowable(e);
84: }
85: finish();
86: }
87: }
|