Interface DeploymentProcessorTarget


  • public interface DeploymentProcessorTarget
    A target for deployment processors to be added to.
    • Method Detail

      • addDeploymentProcessor

        void addDeploymentProcessor​(String subsystemName,
                                    Phase phase,
                                    int priority,
                                    DeploymentUnitProcessor processor)
        Add a deployment processor.
        Parameters:
        subsystemName - The name of the subsystem registering this processor
        phase - the processor phase install into (must not be null)
        priority - the priority within the selected phase
        processor - the processor to install
      • addDeploymentProcessor

        @Deprecated
        void addDeploymentProcessor​(Phase phase,
                                    int priority,
                                    DeploymentUnitProcessor processor)
        Deprecated.
        Add a deployment processor. This is a legacy method that does not take a subsystem name. A subsystem name of the empty string is assumed.
        Parameters:
        phase - the processor phase install into (must not be null)
        priority - the priority within the selected phase
        processor - the processor to install