mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Big honkin' merge from head. Sheesh!
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3617 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -46,11 +46,37 @@ public interface VersionServicePolicies
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* After create version policy interface
|
||||
*
|
||||
*/
|
||||
public interface AfterCreateVersionPolicy extends ClassPolicy
|
||||
{
|
||||
/**
|
||||
* Called after the version has been created
|
||||
*
|
||||
* @param versionableNode the node that has been versioned
|
||||
* @param version the created version
|
||||
*/
|
||||
public void afterCreateVersion(NodeRef versionableNode, Version version);
|
||||
}
|
||||
|
||||
/**
|
||||
* On create version policy interface
|
||||
*/
|
||||
public interface OnCreateVersionPolicy extends ClassPolicy
|
||||
{
|
||||
/**
|
||||
* Called during the creation of the version to determine what the versioning policy for a
|
||||
* perticular type may be.
|
||||
* WARNING: implementing behaviour for this policy effects the versioning behaviour of the
|
||||
* type the behaviour is registered against.
|
||||
*
|
||||
* @param classRef
|
||||
* @param versionableNode
|
||||
* @param versionProperties
|
||||
* @param nodeDetails
|
||||
*/
|
||||
public void onCreateVersion(
|
||||
QName classRef,
|
||||
NodeRef versionableNode,
|
||||
|
Reference in New Issue
Block a user