Interface AutoDeploymentStrategy

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void deployResources​(java.lang.String deploymentNameHint, org.springframework.core.io.Resource[] resources, org.activiti.engine.RepositoryService repositoryService)
      Performs deployment for the provided resources, using the provided name as a hint and the provided RepositoryService to perform deployment(s).
      boolean handlesMode​(java.lang.String mode)
      Determines whether the strategy handles deployments for the provided deployment mode.
    • Method Detail

      • handlesMode

        boolean handlesMode​(java.lang.String mode)
        Determines whether the strategy handles deployments for the provided deployment mode.
        Parameters:
        mode - the mode to determine handling for
        Returns:
        true if the strategy handles the mode; false otherwise
      • deployResources

        void deployResources​(java.lang.String deploymentNameHint,
                             org.springframework.core.io.Resource[] resources,
                             org.activiti.engine.RepositoryService repositoryService)
        Performs deployment for the provided resources, using the provided name as a hint and the provided RepositoryService to perform deployment(s).
        Parameters:
        deploymentNameHint - the hint for the name of deployment(s) performed
        resources - the resources to be deployed
        repositoryService - the repository service to use for deployment(s)