All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.as.webservices.webserviceref.WebServiceReferences Maven / Gradle / Ivy

The newest version!
package org.jboss.as.webservices.webserviceref;

import static org.jboss.as.webservices.webserviceref.WSRefUtils.processAnnotatedElement;

import java.lang.reflect.AnnotatedElement;

import javax.xml.ws.Service;

import org.jboss.as.naming.ManagedReferenceFactory;
import org.jboss.as.server.deployment.Attachments;
import org.jboss.as.server.deployment.DeploymentUnit;
import org.jboss.as.server.deployment.DeploymentUnitProcessingException;
import org.jboss.as.server.deployment.module.ResourceRoot;
import org.jboss.as.webservices.util.ASHelper;
import org.jboss.as.webservices.util.VirtualFileAdaptor;
import org.jboss.modules.Module;
import org.jboss.wsf.spi.deployment.UnifiedVirtualFile;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedServiceRefMetaData;
import org.wildfly.security.manager.WildFlySecurityManager;

/**
 * Utility class that encapsulates the creation of web service ref factories.
 * 

* This is also used by Weld to perform WS injection. * * @author Stuart Douglas */ public class WebServiceReferences { public static ManagedReferenceFactory createWebServiceFactory(final DeploymentUnit deploymentUnit, final String targetType, final WSRefAnnotationWrapper wsRefDescription, final AnnotatedElement target, String bindingName) throws DeploymentUnitProcessingException { final UnifiedServiceRefMetaData serviceRefUMDM = createServiceRef(deploymentUnit, targetType, wsRefDescription, target, bindingName, bindingName); final Module module = deploymentUnit.getAttachment(Attachments.MODULE); return new WebServiceManagedReferenceFactory(serviceRefUMDM, module.getClassLoader()); } public static ManagedReferenceFactory createWebServiceFactory(final DeploymentUnit deploymentUnit, final String targetType, final WSRefAnnotationWrapper wsRefDescription, final AnnotatedElement target, String bindingName, final String refKey) throws DeploymentUnitProcessingException { final UnifiedServiceRefMetaData serviceRefUMDM = createServiceRef(deploymentUnit, targetType, wsRefDescription, target, bindingName, refKey); final Module module = deploymentUnit.getAttachment(Attachments.MODULE); return new WebServiceManagedReferenceFactory(serviceRefUMDM, module.getClassLoader()); } private static UnifiedServiceRefMetaData createServiceRef(final DeploymentUnit unit, final String type, final WSRefAnnotationWrapper annotation, final AnnotatedElement annotatedElement, final String bindingName, final String refKey) throws DeploymentUnitProcessingException { final WSRefRegistry wsRefRegistry = ASHelper.getWSRefRegistry(unit); UnifiedServiceRefMetaData serviceRefUMDM = wsRefRegistry.get(refKey); if (serviceRefUMDM == null) { serviceRefUMDM = new UnifiedServiceRefMetaData(getUnifiedVirtualFile(unit), bindingName); wsRefRegistry.add(refKey, serviceRefUMDM); } initServiceRef(unit, serviceRefUMDM, type, annotation); processWSFeatures(serviceRefUMDM, annotatedElement); return serviceRefUMDM; } private static void processWSFeatures(final UnifiedServiceRefMetaData serviceRefUMDM, final AnnotatedElement annotatedElement) throws DeploymentUnitProcessingException { processAnnotatedElement(annotatedElement, serviceRefUMDM); } private static UnifiedServiceRefMetaData initServiceRef(final DeploymentUnit unit, final UnifiedServiceRefMetaData serviceRefUMDM, final String type, final WSRefAnnotationWrapper annotation) throws DeploymentUnitProcessingException { // wsdl location if (!isEmpty(annotation.wsdlLocation())) { serviceRefUMDM.setWsdlFile(annotation.wsdlLocation()); } // ref class type final Module module = unit.getAttachment(Attachments.MODULE); final Class typeClass = getClass(module, type); serviceRefUMDM.setServiceRefType(typeClass.getName()); // ref service interface if (!isEmpty(annotation.value())) { serviceRefUMDM.setServiceInterface(annotation.value()); } else if (Service.class.isAssignableFrom(typeClass)) { serviceRefUMDM.setServiceInterface(typeClass.getName()); } else { serviceRefUMDM.setServiceInterface(Service.class.getName()); } return serviceRefUMDM; } private static Class getClass(final Module module, final String className) throws DeploymentUnitProcessingException { // TODO: refactor to common code final ClassLoader oldCL = WildFlySecurityManager.getCurrentContextClassLoaderPrivileged(); try { WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(module.getClassLoader()); if (!isEmpty(className)) { try { return module.getClassLoader().loadClass(className); } catch (ClassNotFoundException e) { throw new DeploymentUnitProcessingException(e); } } return null; } finally { WildFlySecurityManager.setCurrentContextClassLoaderPrivileged(oldCL); } } private static UnifiedVirtualFile getUnifiedVirtualFile(final DeploymentUnit unit) { final ResourceRoot resourceRoot = unit.getAttachment(org.jboss.as.server.deployment.Attachments.DEPLOYMENT_ROOT); return new VirtualFileAdaptor(resourceRoot.getRoot()); } private static boolean isEmpty(final String string) { return string == null || string.isEmpty(); } private WebServiceReferences() { } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy