Search in sources :

Example 1 with AspectDeploymentProcessor

use of org.jboss.as.webservices.deployers.AspectDeploymentProcessor in project wildfly by wildfly.

the class WSDeploymentActivator method addDeploymentProcessors.

private static void addDeploymentProcessors(final DeploymentProcessorTarget processorTarget, final Phase phase, final int priority) {
    int index = 1;
    List<DeploymentAspect> aspects = DeploymentAspectsProvider.getSortedDeploymentAspects();
    for (final DeploymentAspect da : aspects) {
        if (WSLogger.ROOT_LOGGER.isTraceEnabled()) {
            WSLogger.ROOT_LOGGER.tracef("Installing aspect %s", da.getClass().getName());
        }
        processorTarget.addDeploymentProcessor(WSExtension.SUBSYSTEM_NAME, phase, priority + index++, new AspectDeploymentProcessor(da));
    }
}
Also used : DeploymentAspect(org.jboss.wsf.spi.deployment.DeploymentAspect) AspectDeploymentProcessor(org.jboss.as.webservices.deployers.AspectDeploymentProcessor)

Aggregations

AspectDeploymentProcessor (org.jboss.as.webservices.deployers.AspectDeploymentProcessor)1 DeploymentAspect (org.jboss.wsf.spi.deployment.DeploymentAspect)1