diff --git a/jenkins-client/src/main/java/com/offbytwo/jenkins/model/BuildChangeSetPath.java b/jenkins-client/src/main/java/com/offbytwo/jenkins/model/BuildChangeSetPath.java
index 4bd1a055..0b860362 100644
--- a/jenkins-client/src/main/java/com/offbytwo/jenkins/model/BuildChangeSetPath.java
+++ b/jenkins-client/src/main/java/com/offbytwo/jenkins/model/BuildChangeSetPath.java
@@ -7,16 +7,26 @@
public class BuildChangeSetPath {
/**
- * Usually {@code edit} etc.
+ * The SCM operation, add
or edit
or delete
+ * @see EditType
*/
- // TODO: Think about it if its possible to use an enum type?
- private String editType; // edit, ?
+ private String editType;
private String file;
+ /**
+ * Return the SCM operation.
+ * @return the SCM operation, add
or edit
or delete
+ * @see EditType
+ */
public String getEditType() {
return editType;
}
+ /**
+ * Sets the SCM operation.
+ * @param the SCM operation, add
or edit
or delete
+ * @see EditType
+ */
public void setEditType(String editType) {
this.editType = editType;
}