net.anotheria.anosite.gen.shared.bean.DocumentChangeFB Maven / Gradle / Ivy
/**
********************************************************************************
*** DocumentChangeFB.java ***
*** generated by AnoSiteGenerator (ASG), Version: 2.6.3 ***
*** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.shared.bean;
import net.anotheria.maf.bean.FormBean;
import net.anotheria.util.Date;
public class DocumentChangeFB implements FormBean{
// Generated by: class net.anotheria.asg.generator.view.action.IndexPageActionGenerator.generateDocumentChangeFBviews
private String userName;
private String documentName;
private String parentName;
private String documentLink;
private String action;
private Date date;
private String id;
public String getAction() {
return action;
} //
public void setAction(String action) {
this.action = action;
} //
public String getUserName() {
return userName;
} //
public void setUserName(String userName) {
this.userName = userName;
} //
public String getId() {
return id;
} //
public void setId(String id) {
this.id = id;
} //
public String getDocumentName() {
return documentName;
} //
public void setDocumentName(String documentName) {
this.documentName = documentName;
} //
public String getParentName() {
return parentName;
} //
public void setParentName(String parentName) {
this.parentName = parentName;
} //
public String getDocumentLink() {
return documentLink;
} //
public void setDocumentLink(String documentLink) {
this.documentLink = documentLink;
} //
public Date getDate() {
return date;
} //
public void setDate(Date date) {
this.date = date;
} //
}