mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)
64429: Merged WAT1 (4.3/Cloud) to HEAD-BUG-FIX (4.3/Cloud) 62555: ACE-493, ACE-503 and ACE-511: Modified sites service APIs to support Manage Sites feature. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@64575 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
package org.alfresco.repo.site;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
@@ -52,6 +53,12 @@ public class SiteInfoImpl implements SiteInfo
|
||||
/** Site visibility */
|
||||
private SiteVisibility visibility;
|
||||
|
||||
/** Site created date */
|
||||
private Date createdDate;
|
||||
|
||||
/** Site last modified date */
|
||||
private Date lastModifiedDate;
|
||||
|
||||
/** Set of custom properties that have been defined for site */
|
||||
private Map<QName, Serializable> customProperties = new HashMap<QName, Serializable>(1);
|
||||
|
||||
@@ -215,6 +222,38 @@ public class SiteInfoImpl implements SiteInfo
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.alfresco.service.cmr.site.SiteInfo#getCreatedDate()
|
||||
*/
|
||||
public Date getCreatedDate()
|
||||
{
|
||||
return this.createdDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.alfresco.service.cmr.site.SiteInfo#setCreatedDate(java.util.Date)
|
||||
*/
|
||||
public void setCreatedDate(Date createdDate)
|
||||
{
|
||||
this.createdDate = createdDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.alfresco.service.cmr.site.SiteInfo#getLastModifiedDate()
|
||||
*/
|
||||
public Date getLastModifiedDate()
|
||||
{
|
||||
return this.lastModifiedDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.alfresco.service.cmr.site.SiteInfo#setLastModifiedDate(java.util.Date)
|
||||
*/
|
||||
public void setLastModifiedDate(Date lastModifiedDate)
|
||||
{
|
||||
this.lastModifiedDate = lastModifiedDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Override equals for this ref type
|
||||
*
|
||||
|
Reference in New Issue
Block a user