com.tw.go.plugin.model.ModifiedFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of git-cmd Show documentation
Show all versions of git-cmd Show documentation
Common module that all Go CD plugins can use to poll Git repository.
package com.tw.go.plugin.model;
public class ModifiedFile {
private String fileName;
private String action;
public ModifiedFile(String fileName, String action) {
this.fileName = fileName;
this.action = action;
}
public String getFileName() {
return fileName;
}
public String getAction() {
return action;
}
@Override
public String toString() {
return "ModifiedFile{" +
"fileName='" + fileName + '\'' +
", action='" + action + '\'' +
'}';
}
}