Package org.jboss.as.jaxrs.deployment

Examples of org.jboss.as.jaxrs.deployment.ResteasyDeploymentData


        return false;
    }

    private void registerProviders(final DeploymentUnit deploymentUnit) {
        final ResteasyDeploymentData resteasyDeploymentData = deploymentUnit.getAttachment(JaxrsAttachments.RESTEASY_DEPLOYMENT_DATA);

        if (resteasyDeploymentData != null) {
            for (final String provider : PROVIDERS) {
                resteasyDeploymentData.getScannedProviderClasses().add(provider);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.jaxrs.deployment.ResteasyDeploymentData

Copyright © 2018 www.massapicom. 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.