mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-10318 Update CalendarEntry to hold the created and modified at dates
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@30601 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -52,6 +52,8 @@ public class CalendarEntryDTO implements CalendarEntry, Serializable
|
||||
private String sharePointDocFolder;
|
||||
private boolean isOutlook = false;
|
||||
private String outlookUID;
|
||||
private Date createdAt;
|
||||
private Date modifiedAt;
|
||||
private List<String> tags = new ArrayList<String>();
|
||||
|
||||
/**
|
||||
@@ -269,7 +271,31 @@ public class CalendarEntryDTO implements CalendarEntry, Serializable
|
||||
{
|
||||
return tags;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Gets when this entry was created
|
||||
*/
|
||||
public Date getCreatedAt()
|
||||
{
|
||||
return createdAt;
|
||||
}
|
||||
public void setCreatedAt(Date createdAt)
|
||||
{
|
||||
this.createdAt = createdAt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets when this entry was modified
|
||||
*/
|
||||
public Date getModifiedAt()
|
||||
{
|
||||
return modifiedAt;
|
||||
}
|
||||
public void setModifiedAt(Date modifiedAt)
|
||||
{
|
||||
this.modifiedAt = modifiedAt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Does the given {@link CalendarEntry} define an all-day
|
||||
* event?
|
||||
|
Reference in New Issue
Block a user