| org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping
All known Subclasses: org.springframework.ws.server.endpoint.mapping.AbstractMapBasedEndpointMapping, org.springframework.ws.server.endpoint.mapping.AbstractMethodEndpointMapping,
getDefaultEndpoint | final protected Object getDefaultEndpoint()(Code) | | Returns the default endpoint for this endpoint mapping.
the default endpoint mapping, or null if none |
getEndpointInternal | abstract protected Object getEndpointInternal(MessageContext messageContext) throws Exception(Code) | | Lookup an endpoint for the given request, returning null if no specific one is found. This template
method is called by getEndpoint, a null return value will lead to the default handler, if one is
set.
The returned endpoint can be a string, in which case it is resolved as a bean name. Also, it can take the form
beanName#method , in which case the method is resolved.
the looked up endpoint instance, or null throws: Exception - if there is an error |
getInterceptors | public EndpointInterceptor[] getInterceptors()(Code) | | Returns the the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
array of endpoint interceptors, or null if none |
getOrder | final public int getOrder()(Code) | | |
resolveStringEndpoint | protected Object resolveStringEndpoint(String endpointName)(Code) | | Resolves an endpoint string. If the given string can is a bean name, it is resolved using the application
context.
Parameters: endpointName - the endpoint name the resolved enpoint, or null if the name could not be resolved |
setDefaultEndpoint | final public void setDefaultEndpoint(Object defaultEndpoint)(Code) | | Sets the default endpoint for this endpoint mapping. This endpoint will be returned if no specific mapping was
found.
Default is null , indicating no default endpoint.
Parameters: defaultEndpoint - the default endpoint, or null if none |
setInterceptors | final public void setInterceptors(EndpointInterceptor[] interceptors)(Code) | | Sets the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
Parameters: interceptors - array of endpoint interceptors, or null if none |
setOrder | final public void setOrder(int order)(Code) | | Specify the order value for this mapping.
Default value is
Integer.MAX_VALUE , meaning that it's non-ordered.
See Also: org.springframework.core.Ordered.getOrder |
|
|