001    package org.kuali.maven.mojo.context;
002    
003    import java.io.File;
004    
005    public class JobContext {
006            String name;
007            String type;
008            String template;
009            File workingDir;
010            File localFile;
011            String timestampFormat;
012            String resolvedContent;
013            String unresolvedContent;
014    
015            public String getName() {
016                    return name;
017            }
018    
019            public void setName(String name) {
020                    this.name = name;
021            }
022    
023            public String getType() {
024                    return type;
025            }
026    
027            public void setType(String type) {
028                    this.type = type;
029            }
030    
031            public String getTemplate() {
032                    return template;
033            }
034    
035            public void setTemplate(String template) {
036                    this.template = template;
037            }
038    
039            public File getWorkingDir() {
040                    return workingDir;
041            }
042    
043            public void setWorkingDir(File workingDir) {
044                    this.workingDir = workingDir;
045            }
046    
047            public File getLocalFile() {
048                    return localFile;
049            }
050    
051            public void setLocalFile(File localFile) {
052                    this.localFile = localFile;
053            }
054    
055            public String getTimestampFormat() {
056                    return timestampFormat;
057            }
058    
059            public void setTimestampFormat(String timestampFormat) {
060                    this.timestampFormat = timestampFormat;
061            }
062    
063            public String getResolvedContent() {
064                    return resolvedContent;
065            }
066    
067            public void setResolvedContent(String resolvedContent) {
068                    this.resolvedContent = resolvedContent;
069            }
070    
071            public String getUnresolvedContent() {
072                    return unresolvedContent;
073            }
074    
075            public void setUnresolvedContent(String unresolvedContent) {
076                    this.unresolvedContent = unresolvedContent;
077            }
078    }