KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > riotfamily > riot > job > command > JobCommand


1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1
3  * The contents of this file are subject to the Mozilla Public License Version
4  * 1.1 (the "License"); you may not use this file except in compliance with
5  * the License. You may obtain a copy of the License at
6  * http://www.mozilla.org/MPL/
7  *
8  * Software distributed under the License is distributed on an "AS IS" basis,
9  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
10  * for the specific language governing rights and limitations under the
11  * License.
12  *
13  * The Original Code is Riot.
14  *
15  * The Initial Developer of the Original Code is
16  * Neteye GmbH.
17  * Portions created by the Initial Developer are Copyright (C) 2006
18  * the Initial Developer. All Rights Reserved.
19  *
20  * Contributor(s):
21  * Felix Gnass [fgnass at neteye dot de]
22  *
23  * ***** END LICENSE BLOCK ***** */

24 package org.riotfamily.riot.job.command;
25
26 import org.riotfamily.riot.job.JobManager;
27 import org.riotfamily.riot.job.persistence.JobDetail;
28 import org.riotfamily.riot.list.command.CommandContext;
29 import org.riotfamily.riot.list.command.CommandResult;
30 import org.riotfamily.riot.list.command.core.AbstractCommand;
31 import org.riotfamily.riot.list.command.result.GotoUrlResult;
32 import org.riotfamily.riot.runtime.RiotRuntime;
33 import org.riotfamily.riot.runtime.RiotRuntimeAware;
34
35 public class JobCommand extends AbstractCommand implements
36         RiotRuntimeAware {
37
38     public static final String JavaDoc JOB_STATUS_ACTION = "jobStatus";
39
40     private JobManager jobManager;
41
42     private String JavaDoc jobType;
43
44     private RiotRuntime runtime;
45
46     public void setJobManager(JobManager jobManager) {
47         this.jobManager = jobManager;
48     }
49
50     public void setJobType(String JavaDoc jobType) {
51         this.jobType = jobType;
52     }
53
54     public void setRiotRuntime(RiotRuntime runtime) {
55         this.runtime = runtime;
56     }
57
58     public boolean isEnabled(CommandContext context) {
59         return true;
60     }
61
62     public CommandResult execute(CommandContext context) {
63         String JavaDoc objectId = context.getObjectId() != null
64                 ? context.getObjectId() : context.getParentId();
65
66         JobDetail detail = jobManager.getOrCreateJob(jobType, objectId);
67         return new GotoUrlResult(context, runtime.getServletPrefix()
68                 + "/job?jobId=" + detail.getId() + "&type=" + jobType);
69     }
70 }
71
Popular Tags