mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125605 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125498 slanglois: MNT-16155 Update source headers - remove svn:eol-style property on Java and JSP source files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125783 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
68 lines
2.1 KiB
Java
68 lines
2.1 KiB
Java
package org.alfresco.repo.action.executer;
|
|
|
|
import java.util.List;
|
|
|
|
import org.alfresco.repo.action.ParameterDefinitionImpl;
|
|
import org.alfresco.service.cmr.action.Action;
|
|
import org.alfresco.service.cmr.action.ParameterDefinition;
|
|
import org.alfresco.service.cmr.dictionary.DataTypeDefinition;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.cmr.repository.NodeService;
|
|
import org.alfresco.service.namespace.QName;
|
|
|
|
/**
|
|
* Add features action executor implementation.
|
|
*
|
|
* @author Roy Wetherall
|
|
*/
|
|
public class SetPropertyValueActionExecuter extends ActionExecuterAbstractBase
|
|
{
|
|
/**
|
|
* Action constants
|
|
*/
|
|
public static final String NAME = "set-property-value";
|
|
public static final String PARAM_PROPERTY = "property";
|
|
public static final String PARAM_VALUE = "value";
|
|
|
|
/**
|
|
* The node service
|
|
*/
|
|
private NodeService nodeService;
|
|
|
|
/**
|
|
* Set the node service
|
|
*
|
|
* @param nodeService the node service
|
|
*/
|
|
public void setNodeService(NodeService nodeService)
|
|
{
|
|
this.nodeService = nodeService;
|
|
}
|
|
|
|
/**
|
|
* @see org.alfresco.repo.action.executer.ActionExecuter#execute(Action, NodeRef)
|
|
*/
|
|
public void executeImpl(Action ruleAction, NodeRef actionedUponNodeRef)
|
|
{
|
|
if (this.nodeService.exists(actionedUponNodeRef) == true)
|
|
{
|
|
// Set the value of the property
|
|
this.nodeService.setProperty(
|
|
actionedUponNodeRef,
|
|
(QName)ruleAction.getParameterValue(PARAM_PROPERTY),
|
|
ruleAction.getParameterValue(PARAM_VALUE));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add parameter definitions
|
|
*/
|
|
@Override
|
|
protected void addParameterDefinitions(List<ParameterDefinition> paramList)
|
|
{
|
|
paramList.add(new ParameterDefinitionImpl(PARAM_PROPERTY, DataTypeDefinition.QNAME, true, getParamDisplayLabel(PARAM_PROPERTY), false, "ac-properties"));
|
|
paramList.add(new ParameterDefinitionImpl(PARAM_VALUE, DataTypeDefinition.ANY, true, getParamDisplayLabel(PARAM_VALUE)));
|
|
}
|
|
|
|
}
|