1 package org.kuali.maven.mojo;
2
3 import org.apache.maven.plugin.MojoExecutionException;
4
5
6
7
8
9
10
11 public class RunJobMojo extends AbstractCliMojo {
12
13
14
15
16
17
18
19 private String cmd;
20
21
22
23
24
25
26
27 private String type;
28
29
30
31
32
33
34
35 private String name;
36
37 @Override
38 public void execute() throws MojoExecutionException {
39 helper.executeCliJobCommand(this, name, type);
40 }
41
42 public String getType() {
43 return type;
44 }
45
46 public void setType(String type) {
47 this.type = type;
48 }
49
50 public String getCmd() {
51 return cmd;
52 }
53
54 public void setCmd(String cmd) {
55 this.cmd = cmd;
56 }
57
58 public String getName() {
59 return name;
60 }
61
62 public void setName(String name) {
63 this.name = name;
64 }
65
66 }