Class WSEndpointHandlersMapping
- java.lang.Object
-
- org.jboss.as.webservices.injection.WSEndpointHandlersMapping
-
public final class WSEndpointHandlersMapping extends Object
Defines mapping of Jaxws endpoints and their handlers.- Author:
- Richard Opalka
-
-
Constructor Summary
Constructors Constructor Description WSEndpointHandlersMapping()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<String>getHandlers(String endpointClass)Returns handlers class names associated with WS endpoint.booleanisEmpty()voidregisterEndpointHandlers(String endpointClass, Set<String> endpointHandlers)Registers endpoint and its associated WS handlers.
-
-
-
Method Detail
-
registerEndpointHandlers
public void registerEndpointHandlers(String endpointClass, Set<String> endpointHandlers)
Registers endpoint and its associated WS handlers.- Parameters:
endpointClass- WS endpointendpointHandlers- WS handlers associated with endpoint
-
getHandlers
public Set<String> getHandlers(String endpointClass)
Returns handlers class names associated with WS endpoint.- Parameters:
endpointClass- to get associated handlers for- Returns:
- associated handlers class names
-
isEmpty
public boolean isEmpty()
-
-