mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
Missed check in of moderated invitation action handler. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13389 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
45 lines
1.7 KiB
Java
45 lines
1.7 KiB
Java
package org.alfresco.repo.invitation;
|
|
|
|
|
|
import org.alfresco.repo.invitation.WorkflowModelNominatedInvitation;
|
|
import org.alfresco.repo.security.authentication.MutableAuthenticationDao;
|
|
import org.alfresco.repo.workflow.jbpm.JBPMSpringActionHandler;
|
|
import org.alfresco.service.ServiceRegistry;
|
|
import org.alfresco.service.cmr.security.PersonService;
|
|
import org.alfresco.service.cmr.workflow.WorkflowService;
|
|
import org.jbpm.graph.exe.ExecutionContext;
|
|
import org.springframework.beans.factory.BeanFactory;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public class ModeratedActionReject extends JBPMSpringActionHandler
|
|
{
|
|
private static final long serialVersionUID = 4377660284993206875L;
|
|
|
|
private MutableAuthenticationDao mutableAuthenticationDao;
|
|
private PersonService personService;
|
|
private WorkflowService workflowService;
|
|
|
|
/* (non-Javadoc)
|
|
* @see org.alfresco.repo.workflow.jbpm.JBPMSpringActionHandler#initialiseHandler(org.springframework.beans.factory.BeanFactory)
|
|
*/
|
|
@Override
|
|
protected void initialiseHandler(BeanFactory factory)
|
|
{
|
|
ServiceRegistry services = (ServiceRegistry)factory.getBean(ServiceRegistry.SERVICE_REGISTRY);
|
|
mutableAuthenticationDao = (MutableAuthenticationDao) factory.getBean("authenticationDao");
|
|
personService = (PersonService) services.getPersonService();
|
|
workflowService = (WorkflowService) services.getWorkflowService();
|
|
}
|
|
|
|
/* (non-Javadoc)
|
|
* @see org.jbpm.graph.def.ActionHandler#execute(org.jbpm.graph.exe.ExecutionContext)
|
|
* Reject Moderated
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
public void execute(final ExecutionContext executionContext) throws Exception
|
|
{
|
|
System.out.println("Reject woz ere!");
|
|
}
|
|
} |