All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.asg.util.DocumentChange Maven / Gradle / Ivy

The newest version!
package net.anotheria.asg.util;

import net.anotheria.asg.util.CmsChangesTracker.Action;
/**
 * 

DocumentChange class.

* * @author another * @version $Id: $Id */ public class DocumentChange{ private String userName; private String parentName; private String documentName; private String id; private Action action; private long timestamp; /** *

Getter for the field userName.

* * @return a {@link java.lang.String} object. */ public String getUserName() { return userName; } /** *

Setter for the field userName.

* * @param userName a {@link java.lang.String} object. */ public void setUserName(String userName) { this.userName = userName; } /** *

Getter for the field documentName.

* * @return a {@link java.lang.String} object. */ public String getDocumentName() { return documentName; } /** *

Setter for the field documentName.

* * @param documentName a {@link java.lang.String} object. */ public void setDocumentName(String documentName) { this.documentName = documentName; } /** *

Getter for the field action.

* * @return a {@link net.anotheria.asg.util.CmsChangesTracker.Action} object. */ public Action getAction() { return action; } /** *

Setter for the field action.

* * @param action a {@link net.anotheria.asg.util.CmsChangesTracker.Action} object. */ public void setAction(Action action) { this.action = action; } /** *

Getter for the field timestamp.

* * @return a long. */ public long getTimestamp() { return timestamp; } /** *

Setter for the field timestamp.

* * @param timestamp a long. */ public void setTimestamp(long timestamp) { this.timestamp = timestamp; } /** *

Getter for the field id.

* * @return a {@link java.lang.String} object. */ public String getId() { return id; } /** *

Setter for the field id.

* * @param id a {@link java.lang.String} object. */ public void setId(String id) { this.id = id; } /** *

Getter for the field parentName.

* * @return a {@link java.lang.String} object. */ public String getParentName() { return parentName; } /** *

Setter for the field parentName.

* * @param parentName a {@link java.lang.String} object. */ public void setParentName(String parentName) { this.parentName = parentName; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy