mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged V2.2 to HEAD (V2.1 sourced fixes)
7121: Merged V2.1 to V2.2 7049: Fix for unreported duplicate component ID error (very rarely seen) in browse WCM sandbox JSP 7058: Fixes failure to rollback correctly on failed alfresco->alfresco deployment. 7074: Added filtering/access control checks to the AVM virtualization view. 7083: Added transaction handling to calls involving preview store 7084: xmlsec library update to 1.4.1 7092: Missing config update from the AVM filtering checkin. 7124: Merged V2.1 to V2.2 7091: Fix to several issues found with Regenerate Renditions wizard and FormsService 7125: Merged V2.1 to V2.2 7093: Fixes to workaround some deployment issues being experienced by a customer. 7094: Fix for previous build failure git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7373 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -95,6 +95,10 @@ public class FileState
|
||||
|
||||
private PseudoFileList m_pseudoFiles;
|
||||
|
||||
// Last updated time
|
||||
|
||||
private long m_lastUpdate;
|
||||
|
||||
/**
|
||||
* Class constructor
|
||||
*
|
||||
@@ -357,6 +361,26 @@ public class FileState
|
||||
m_pseudoFiles = new PseudoFileList();
|
||||
m_pseudoFiles.addFile( pfile);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the last updated time
|
||||
*
|
||||
* @return long
|
||||
*/
|
||||
public final long getLastUpdated()
|
||||
{
|
||||
return m_lastUpdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the last updated time
|
||||
*
|
||||
* @param updateTime long
|
||||
*/
|
||||
public final void setLastUpdated(long updateTime)
|
||||
{
|
||||
m_lastUpdate = updateTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the file status
|
||||
|
Reference in New Issue
Block a user