Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)

84168: ACE-2773 (Amend document versions panel component for further extending possibilities)


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@84637 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2014-09-18 17:27:07 +00:00
parent b5abcd7812
commit 06b9014607

View File

@@ -20,10 +20,12 @@ package org.alfresco.repo.jscript;
import java.io.Serializable;
import java.util.Date;
import java.util.Map;
import org.alfresco.service.ServiceRegistry;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.version.Version;
import org.alfresco.util.ParameterCheck;
import org.mozilla.javascript.Scriptable;
/**
@@ -39,8 +41,6 @@ public final class ScriptVersion implements Serializable
private Scriptable scope;
private ServiceRegistry services;
private Version version;
private static ValueConverter converter = new ValueConverter();
/**
* Construct
@@ -59,7 +59,7 @@ public final class ScriptVersion implements Serializable
*/
public Date getCreatedDate()
{
return version.getCreatedDate();
return version.getFrozenModifiedDate();
}
/**
@@ -69,7 +69,7 @@ public final class ScriptVersion implements Serializable
*/
public String getCreator()
{
return version.getCreator();
return version.getFrozenModifier();
}
/**
@@ -130,4 +130,25 @@ public final class ScriptVersion implements Serializable
return new ScriptNode(version.getFrozenStateNodeRef(), services, scope);
}
/**
* Get the map containing the version property values
*
* @return the map containing the version properties
*/
public Map<String, Serializable> getVersionProperties()
{
return version.getVersionProperties();
}
/**
* Gets the value of a named version property.
*
* @param name the name of the property
* @return the value of the property
*/
public Serializable getVersionProperty(String name)
{
ParameterCheck.mandatoryString("name", name);
return version.getVersionProperty(name);
}
}