| |
|
| java.lang.Object com.sun.xml.ws.util.HandlerAnnotationInfo
HandlerAnnotationInfo | public class HandlerAnnotationInfo (Code) | | Used to hold a list of handlers and a set of roles from an
annotated endpoint. At runtime, these are created by the
HandlerAnnotationProcessor at the request of client and
server code to create the handler chains.
See Also: com.sun.xml.ws.util.HandlerAnnotationProcessor author: JAX-WS Development Team |
Method Summary | |
public List<Handler> | getHandlers() Return the handlers specified by the handler chain descriptor. | public Set<String> | getRoles() Return the roles contained in the handler chain descriptor. | public void | setHandlers(List<Handler> handlers) This method should only be called by HandlerAnnotationProcessor. | public void | setRoles(Set<String> roles) This method should only be called by HandlerAnnotationProcessor. |
getHandlers | public List<Handler> getHandlers()(Code) | | Return the handlers specified by the handler chain descriptor.
A list of jax-ws handler objects. |
getRoles | public Set<String> getRoles()(Code) | | Return the roles contained in the handler chain descriptor.
A set of roles. |
setHandlers | public void setHandlers(List<Handler> handlers)(Code) | | This method should only be called by HandlerAnnotationProcessor.
Parameters: handlers - The handlers specified by the handler chain descriptor. |
setRoles | public void setRoles(Set<String> roles)(Code) | | This method should only be called by HandlerAnnotationProcessor.
Parameters: roles - The roles contained in the handler chain descriptor. |
|
|
|