mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-9153 Convert the discussions single post update webscript to de-lucened java backed
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29772 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -41,6 +41,7 @@ public class PostInfoImpl implements PostInfo
|
||||
private String modifier;
|
||||
private Date createdAt;
|
||||
private Date modifiedAt;
|
||||
private Date updatedAt;
|
||||
|
||||
/**
|
||||
* Creates a new, empty {@link PostInfo}
|
||||
@@ -113,6 +114,12 @@ public class PostInfoImpl implements PostInfo
|
||||
return modifiedAt;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Date getUpdatedAt()
|
||||
{
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setTitle(String title)
|
||||
{
|
||||
@@ -144,4 +151,9 @@ public class PostInfoImpl implements PostInfo
|
||||
{
|
||||
this.modifiedAt = modifiedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Date updatedAt)
|
||||
{
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user