Class ActivitiStateHandlerRegistry

  • All Implemented Interfaces:
    CoreActivityBehavior<ActivityExecution>, ActivityBehavior, SignallableActivityBehavior, org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.BeanNameAware, org.springframework.beans.factory.InitializingBean

    public class ActivitiStateHandlerRegistry
    extends ReceiveTaskActivityBehavior
    implements org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.BeanNameAware, ActivityBehavior, org.springframework.beans.factory.InitializingBean
    this class records and manages all known org.camunda.bpm.engine.annotations.State - responding beans in the JVM. It should have metadata on all methods, and what those methods expect from a given invocation (ie: which process, which process variables).
    Since:
    1.0
    Author:
    Josh Long
    • Constructor Detail

      • ActivitiStateHandlerRegistry

        public ActivitiStateHandlerRegistry()
    • Method Detail

      • setProcessEngine

        public void setProcessEngine​(ProcessEngine processEngine)
      • registrationKey

        protected java.lang.String registrationKey​(java.lang.String stateName,
                                                   java.lang.String processName)
      • registerActivitiStateHandler

        public void registerActivitiStateHandler​(ActivitiStateHandlerRegistration registration)
        used at runtime to register state handlers as they are registered with the spring context
        Parameters:
        registration - the org.camunda.bpm.engine.test.spring.components.registry.ActivitiStateHandlerRegistration
      • findRegistrationsForProcessAndState

        public java.util.Collection<ActivitiStateHandlerRegistration> findRegistrationsForProcessAndState​(java.lang.String processName,
                                                                                                          java.lang.String stateName)
        this is responsible for looking up components in the registry and returning the appropriate handler based on specificity of the org.camunda.bpm.engine.test.spring.components.registry.ActivitiStateHandlerRegistration
        Parameters:
        processName - the process name to look for (optional)
        stateName - the state name to look for (not optional)
        Returns:
        all matching options
      • findRegistrationForProcessAndState

        public ActivitiStateHandlerRegistration findRegistrationForProcessAndState​(java.lang.String processName,
                                                                                   java.lang.String stateName)
        this scours the registry looking for candidate registrations that match a given process name and/ or state nanme
        Parameters:
        processName - the name of the process
        stateName - the name of the state
        Returns:
        an unambiguous org.camunda.bpm.engine.test.spring.components.registry.ActivitiStateHandlerRegistry or null
      • setBeanFactory

        public void setBeanFactory​(org.springframework.beans.factory.BeanFactory beanFactory)
                            throws org.springframework.beans.BeansException
        Specified by:
        setBeanFactory in interface org.springframework.beans.factory.BeanFactoryAware
        Throws:
        org.springframework.beans.BeansException
      • setBeanName

        public void setBeanName​(java.lang.String name)
        Specified by:
        setBeanName in interface org.springframework.beans.factory.BeanNameAware
      • afterPropertiesSet

        public void afterPropertiesSet()
                                throws java.lang.Exception
        Specified by:
        afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
        Throws:
        java.lang.Exception