Package org.jboss.weld.injection.spi
Interface JaxwsInjectionServices
-
- All Superinterfaces:
Service
public interface JaxwsInjectionServices extends Service
An integrator should implement this interface to allow Weld to resolve web service referencesJaxwsInjectionServicesis a per-module service.- Author:
- Jozef Hartinger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> ResourceReferenceFactory<T>registerWebServiceRefInjectionPoint(javax.enterprise.inject.spi.InjectionPoint injectionPoint)Register a WebServiceRef injection point.
-
-
-
Method Detail
-
registerWebServiceRefInjectionPoint
<T> ResourceReferenceFactory<T> registerWebServiceRefInjectionPoint(javax.enterprise.inject.spi.InjectionPoint injectionPoint)
Register a WebServiceRef injection point. The implementation validates the injection point. If the validation passes, an instance ofResourceReferenceFactoryis returned which may be used at runtime for creating instances of the resource.- Type Parameters:
T- the type of the injected instance- Parameters:
injectionPoint- the injection point metadata- Returns:
- factory for the web service reference
- Throws:
javax.enterprise.inject.spi.DefinitionException- if there is a definition problem related to the injection point
-
-