Java Doc for AbstractEndpointMapping.java in  » Web-Services » spring-ws-1.0.0 » org » springframework » ws » server » endpoint » mapping » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Services » spring ws 1.0.0 » org.springframework.ws.server.endpoint.mapping 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping

All known Subclasses:   org.springframework.ws.server.endpoint.mapping.AbstractMapBasedEndpointMapping,  org.springframework.ws.server.endpoint.mapping.AbstractMethodEndpointMapping,
AbstractEndpointMapping
abstract public class AbstractEndpointMapping extends ApplicationObjectSupport implements EndpointMapping,Ordered(Code)
Abstract base class for EndpointMapping implementations. Supports a default endpoint, and endpoint interceptors.
author:
   Arjen Poutsma
See Also:   AbstractEndpointMapping.getEndpointInternal(org.springframework.ws.context.MessageContext)
See Also:   org.springframework.ws.server.EndpointInterceptor
since:
   1.0.0




Method Summary
protected  EndpointInvocationChaincreateEndpointInvocationChain(MessageContext messageContext, Object endpoint, EndpointInterceptor[] interceptors)
     Creates a new EndpointInvocationChain based on the given message context, endpoint, and interceptors.
final protected  ObjectgetDefaultEndpoint()
     Returns the default endpoint for this endpoint mapping.
final public  EndpointInvocationChaingetEndpoint(MessageContext messageContext)
     Look up an endpoint for the given message context, falling back to the default endpoint if no specific one is found.
abstract protected  ObjectgetEndpointInternal(MessageContext messageContext)
     Lookup an endpoint for the given request, returning null if no specific one is found.
public  EndpointInterceptor[]getInterceptors()
     Returns the the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
final public  intgetOrder()
    
protected  ObjectresolveStringEndpoint(String endpointName)
     Resolves an endpoint string.
final public  voidsetDefaultEndpoint(Object defaultEndpoint)
     Sets the default endpoint for this endpoint mapping.
final public  voidsetInterceptors(EndpointInterceptor[] interceptors)
     Sets the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
final public  voidsetOrder(int order)
     Specify the order value for this mapping.



Method Detail
createEndpointInvocationChain
protected EndpointInvocationChain createEndpointInvocationChain(MessageContext messageContext, Object endpoint, EndpointInterceptor[] interceptors)(Code)
Creates a new EndpointInvocationChain based on the given message context, endpoint, and interceptors. Default implementation creates a simple EndpointInvocationChain based on the set interceptors.
Parameters:
  endpoint - the endpoint
Parameters:
  interceptors - the endpoint interceptors the created invocation chain
See Also:   AbstractEndpointMapping.setInterceptors(org.springframework.ws.server.EndpointInterceptor[])



getDefaultEndpoint
final protected Object getDefaultEndpoint()(Code)
Returns the default endpoint for this endpoint mapping. the default endpoint mapping, or null if none



getEndpoint
final public EndpointInvocationChain getEndpoint(MessageContext messageContext) throws Exception(Code)
Look up an endpoint for the given message context, falling back to the default endpoint if no specific one is found. the looked up endpoint instance, or the default endpoint
See Also:   AbstractEndpointMapping.getEndpointInternal(org.springframework.ws.context.MessageContext)



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




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.