net.anotheria.asg.util.DocumentChange Maven / Gradle / Ivy
package net.anotheria.asg.util;
import net.anotheria.asg.util.CmsChangesTracker.Action;
/**
*
*/
public class DocumentChange{
private String userName;
private String parentName;
private String documentName;
private String id;
private Action action;
private long timestamp;
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getDocumentName() {
return documentName;
}
public void setDocumentName(String documentName) {
this.documentName = documentName;
}
public Action getAction() {
return action;
}
public void setAction(Action action) {
this.action = action;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getParentName() {
return parentName;
}
public void setParentName(String parentName) {
this.parentName = parentName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy