Files
alfresco-community-repo/source/java/org/alfresco/service/cmr/action/ActionDefinition.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

35 lines
994 B
Java

package org.alfresco.service.cmr.action;
import java.util.Set;
import org.alfresco.api.AlfrescoPublicApi;
import org.alfresco.service.namespace.QName;
/**
* Rule action interface.
*
* @author Roy Wetherall
*/
@AlfrescoPublicApi
public interface ActionDefinition extends ParameterizedItemDefinition
{
/**
* Gets a list of the types that this action item is applicable for
*
* @return set of types never <tt>null</tt>
*/
public Set<QName> getApplicableTypes();
/**
* Get whether the basic action definition supports action tracking
* or not. This can be overridden for each {@link Action#getTrackStatus() action}
* but if not, this value is used. Defaults to <tt>false</tt>.
*
* @return <tt>true</tt> to track action execution status or <tt>false</tt> (default)
* to do no action tracking
*
* @since 3.4.1
*/
public boolean getTrackStatus();
}