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.service.cmr.site;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.Map;
|
||||
|
||||
import org.alfresco.api.AlfrescoPublicApi;
|
||||
@@ -124,4 +125,32 @@ public interface SiteInfo extends PermissionCheckValue
|
||||
*/
|
||||
public abstract Serializable getCustomProperty(QName name);
|
||||
|
||||
/**
|
||||
* Get the site created date
|
||||
*
|
||||
* @return <code>Date</code> site created date
|
||||
*/
|
||||
public abstract Date getCreatedDate();
|
||||
|
||||
/**
|
||||
* Set the site created date
|
||||
*
|
||||
* @param createdDate site created date
|
||||
*/
|
||||
public abstract void setCreatedDate(Date createdDate);
|
||||
|
||||
/**
|
||||
* Get the site last modified date
|
||||
*
|
||||
* @return <code>Date</code> site last modified date
|
||||
*/
|
||||
public abstract Date getLastModifiedDate();
|
||||
|
||||
/**
|
||||
* Set the site last modified date
|
||||
*
|
||||
* @param lastModifiedDate site last modified date
|
||||
*/
|
||||
public abstract void setLastModifiedDate(Date lastModifiedDate);
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user