Package org.jboss.as.ee.component.deployers

Source Code of org.jboss.as.ee.component.deployers.ResourceReferenceRegistrySetupProcessor

package org.jboss.as.ee.component.deployers;

import org.jboss.as.ee.beanvalidation.BeanValidationFactoryResourceReferenceProcessor;
import org.jboss.as.ee.beanvalidation.BeanValidationResourceReferenceProcessor;
import org.jboss.as.ee.component.Attachments;
import org.jboss.as.server.deployment.DeploymentPhaseContext;
import org.jboss.as.server.deployment.DeploymentUnit;
import org.jboss.as.server.deployment.DeploymentUnitProcessingException;
import org.jboss.as.server.deployment.DeploymentUnitProcessor;

/**
* DUP that adds the {@Link EEResourceReferenceProcessorRegistry} to the deployment, and adds the bean validation resolvers.
*
* @author Stuart Douglas
*/
public class ResourceReferenceRegistrySetupProcessor implements DeploymentUnitProcessor {


    @Override
    public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
        final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
        if(deploymentUnit.getParent() == null) {
            final EEResourceReferenceProcessorRegistry registry = new EEResourceReferenceProcessorRegistry();
            registry.registerResourceReferenceProcessor(BeanValidationFactoryResourceReferenceProcessor.INSTANCE);
            registry.registerResourceReferenceProcessor(BeanValidationResourceReferenceProcessor.INSTANCE);
            deploymentUnit.putAttachment(Attachments.RESOURCE_REFERENCE_PROCESSOR_REGISTRY, registry);
        } else{
            deploymentUnit.putAttachment(Attachments.RESOURCE_REFERENCE_PROCESSOR_REGISTRY, deploymentUnit.getParent().getAttachment(Attachments.RESOURCE_REFERENCE_PROCESSOR_REGISTRY));
        }
    }

    @Override
    public void undeploy(final DeploymentUnit context) {

    }
}
TOP

Related Classes of org.jboss.as.ee.component.deployers.ResourceReferenceRegistrySetupProcessor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.