mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Organize Imports
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@74022 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -20,10 +20,9 @@ package org.alfresco.repo.policy.annotation;
|
||||
|
||||
import org.alfresco.repo.policy.Behaviour;
|
||||
|
||||
|
||||
/**
|
||||
* Interface for a behaviour registry.
|
||||
*
|
||||
*
|
||||
* @author Roy Wetherall
|
||||
* @since 2.2
|
||||
*/
|
||||
@@ -31,16 +30,16 @@ public interface BehaviourRegistry
|
||||
{
|
||||
/**
|
||||
* Register a behaviour against a given name.
|
||||
*
|
||||
*
|
||||
* @param behaviour behaviour
|
||||
*/
|
||||
void registerBehaviour(String name, org.alfresco.repo.policy.Behaviour behaviour);
|
||||
|
||||
void registerBehaviour(String name, Behaviour behaviour);
|
||||
|
||||
/**
|
||||
* Gets the behaviour for a given name.
|
||||
*
|
||||
*
|
||||
* @param name behaviour name
|
||||
* @return {@link Behaviour} behaviour, null otherwise
|
||||
*/
|
||||
org.alfresco.repo.policy.Behaviour getBehaviour(String name);
|
||||
Behaviour getBehaviour(String name);
|
||||
}
|
||||
|
Reference in New Issue
Block a user