1 package org.kuali.maven.mojo.context;
2
3 import java.io.File;
4
5 public class JobContext {
6 String name;
7 String type;
8 String template;
9 File workingDir;
10 File localFile;
11 String timestampFormat;
12 String resolvedContent;
13 String unresolvedContent;
14
15 public String getName() {
16 return name;
17 }
18
19 public void setName(String name) {
20 this.name = name;
21 }
22
23 public String getType() {
24 return type;
25 }
26
27 public void setType(String type) {
28 this.type = type;
29 }
30
31 public String getTemplate() {
32 return template;
33 }
34
35 public void setTemplate(String template) {
36 this.template = template;
37 }
38
39 public File getWorkingDir() {
40 return workingDir;
41 }
42
43 public void setWorkingDir(File workingDir) {
44 this.workingDir = workingDir;
45 }
46
47 public File getLocalFile() {
48 return localFile;
49 }
50
51 public void setLocalFile(File localFile) {
52 this.localFile = localFile;
53 }
54
55 public String getTimestampFormat() {
56 return timestampFormat;
57 }
58
59 public void setTimestampFormat(String timestampFormat) {
60 this.timestampFormat = timestampFormat;
61 }
62
63 public String getResolvedContent() {
64 return resolvedContent;
65 }
66
67 public void setResolvedContent(String resolvedContent) {
68 this.resolvedContent = resolvedContent;
69 }
70
71 public String getUnresolvedContent() {
72 return unresolvedContent;
73 }
74
75 public void setUnresolvedContent(String unresolvedContent) {
76 this.unresolvedContent = unresolvedContent;
77 }
78 }