Files
alfresco-community-repo/source/java/org/alfresco/service/cmr/version/Version.java
Raluca Munteanu 8674e2bfc8 Merged 5.1.N (5.1.2) to 5.2.N (5.2.1)
125603 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
      125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125781 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2016-04-26 12:48:49 +00:00

113 lines
3.1 KiB
Java

package org.alfresco.service.cmr.version;
import java.io.Serializable;
import java.util.Date;
import java.util.Map;
import org.alfresco.api.AlfrescoPublicApi;
import org.alfresco.repo.version.VersionBaseModel;
import org.alfresco.service.cmr.repository.NodeRef;
/**
* Version interface.
*
* Allows access to version property values and frozen state node references.
* The version history tree can also be navigated.
*
* @author Roy Wetherall, janv
*/
@AlfrescoPublicApi
public interface Version extends Serializable
{
/**
* Names of the system version properties
*/
public static final String PROP_DESCRIPTION = VersionBaseModel.PROP_DESCRIPTION;
/**
* Helper method to get the created date from the version property data.
*
* @return the date the version was created
* @deprecated use getFrozenModifiedDate
*/
public Date getCreatedDate();
/**
* Helper method to get the creator of the version.
*
* @return the creator of the version
* @deprecated use getFrozenModifier
*/
public String getCreator();
/**
* Helper method to get the frozen (original) modified date for this version of the node
*
* @return the modified date
*/
public Date getFrozenModifiedDate();
/**
* Helper method to get the frozen (original) modifier for this version of the node
*
* @return the modifier
*/
public String getFrozenModifier();
/**
* Helper method to get the version label from the version property data.
*
* @return the version label
*/
public String getVersionLabel();
/**
* Helper method to get the version type.
*
* @return the value of the version type as an enum value
*/
public VersionType getVersionType();
/**
* Helper method to get the version description.
*
* @return the version description
*/
public String getDescription();
/**
* Get the map containing the version property values
*
* @return the map containing the version properties
*/
public Map<String, Serializable> 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);
/**
* Gets a reference to the node that this version was created from.
* <p>
* Note that this reference will be to the current state of the versioned
* node which may now correspond to a later version.
*
* @return a node reference (to the versioned node in the 'live' store)
*/
public NodeRef getVersionedNodeRef();
/**
* Gets the reference to the node that contains the frozen state of the
* version.
*
* @return a node reference (to the version node in the 'version' store)
*/
public NodeRef getFrozenStateNodeRef();
}