Java Doc for MessageContext.java in  » 6.0-JDK-Modules » jax-ws-api » javax » xml » ws » handler » 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 » 6.0 JDK Modules » jax ws api » javax.xml.ws.handler 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.xml.ws.handler.MessageContext

MessageContext
public interface MessageContext extends Map<String, Object>(Code)
The interface MessageContext abstracts the message context that is processed by a handler in the handle method.

The MessageContext interface provides methods to manage a property set. MessageContext properties enable handlers in a handler chain to share processing related state.
since:
   JAX-WS 2.0


Inner Class :public enum Scope

Field Summary
final public static  StringHTTP_REQUEST_HEADERS
     Standard property: HTTP request headers.
final public static  StringHTTP_REQUEST_METHOD
     Standard property: HTTP request method.
final public static  StringHTTP_RESPONSE_CODE
     Standard property: HTTP response status code.
final public static  StringHTTP_RESPONSE_HEADERS
     Standard property: HTTP response headers.
final public static  StringINBOUND_MESSAGE_ATTACHMENTS
     Standard property: Map of attachments to a message for the inbound message, key is the MIME Content-ID, value is a DataHandler.
final public static  StringMESSAGE_OUTBOUND_PROPERTY
     Standard property: message direction, true for outbound messages, false for inbound.
final public static  StringOUTBOUND_MESSAGE_ATTACHMENTS
     Standard property: Map of attachments to a message for the outbound message, key is the MIME Content-ID, value is a DataHandler.
final public static  StringPATH_INFO
    
final public static  StringQUERY_STRING
     Standard property: Query string for request.
final public static  StringREFERENCE_PARAMETERS
     Standard property: WS Addressing Reference Parameters.
final public static  StringSERVLET_CONTEXT
     Standard property: servlet context object.
final public static  StringSERVLET_REQUEST
     Standard property: servlet request object.
final public static  StringSERVLET_RESPONSE
     Standard property: servlet response object.
final public static  StringWSDL_DESCRIPTION
     Standard property: input source for WSDL document.
final public static  StringWSDL_INTERFACE
     Standard property: name of wsdl interface (2.0) or port type (1.1).
final public static  StringWSDL_OPERATION
     Standard property: name of WSDL operation.
final public static  StringWSDL_PORT
     Standard property: name of WSDL port.
final public static  StringWSDL_SERVICE
     Standard property: name of WSDL service.


Method Summary
public  ScopegetScope(String name)
     Gets the scope of a property.
public  voidsetScope(String name, Scope scope)
     Sets the scope of a property.

Field Detail
HTTP_REQUEST_HEADERS
final public static String HTTP_REQUEST_HEADERS(Code)
Standard property: HTTP request headers.

Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>>




HTTP_REQUEST_METHOD
final public static String HTTP_REQUEST_METHOD(Code)
Standard property: HTTP request method.

Type: java.lang.String




HTTP_RESPONSE_CODE
final public static String HTTP_RESPONSE_CODE(Code)
Standard property: HTTP response status code.

Type: java.lang.Integer




HTTP_RESPONSE_HEADERS
final public static String HTTP_RESPONSE_HEADERS(Code)
Standard property: HTTP response headers.

Type: java.util.Map<java.lang.String, java.util.List<java.lang.String>>




INBOUND_MESSAGE_ATTACHMENTS
final public static String INBOUND_MESSAGE_ATTACHMENTS(Code)
Standard property: Map of attachments to a message for the inbound message, key is the MIME Content-ID, value is a DataHandler.

Type: java.util.Map




MESSAGE_OUTBOUND_PROPERTY
final public static String MESSAGE_OUTBOUND_PROPERTY(Code)
Standard property: message direction, true for outbound messages, false for inbound.

Type: boolean




OUTBOUND_MESSAGE_ATTACHMENTS
final public static String OUTBOUND_MESSAGE_ATTACHMENTS(Code)
Standard property: Map of attachments to a message for the outbound message, key is the MIME Content-ID, value is a DataHandler.

Type: java.util.Map




PATH_INFO
final public static String PATH_INFO(Code)
Standard property: Request Path Info

Type: String




QUERY_STRING
final public static String QUERY_STRING(Code)
Standard property: Query string for request.

Type: String




REFERENCE_PARAMETERS
final public static String REFERENCE_PARAMETERS(Code)
Standard property: WS Addressing Reference Parameters. The list MUST include all SOAP headers marked with the wsa:IsReferenceParameter="true" attribute.

Type: List
since:
   JAX-WS 2.1




SERVLET_CONTEXT
final public static String SERVLET_CONTEXT(Code)
Standard property: servlet context object.

Type: javax.servlet.ServletContext




SERVLET_REQUEST
final public static String SERVLET_REQUEST(Code)
Standard property: servlet request object.

Type: javax.servlet.http.HttpServletRequest




SERVLET_RESPONSE
final public static String SERVLET_RESPONSE(Code)
Standard property: servlet response object.

Type: javax.servlet.http.HttpServletResponse




WSDL_DESCRIPTION
final public static String WSDL_DESCRIPTION(Code)
Standard property: input source for WSDL document.

Type: org.xml.sax.InputSource




WSDL_INTERFACE
final public static String WSDL_INTERFACE(Code)
Standard property: name of wsdl interface (2.0) or port type (1.1).

Type: javax.xml.namespace.QName




WSDL_OPERATION
final public static String WSDL_OPERATION(Code)
Standard property: name of WSDL operation.

Type: javax.xml.namespace.QName




WSDL_PORT
final public static String WSDL_PORT(Code)
Standard property: name of WSDL port.

Type: javax.xml.namespace.QName




WSDL_SERVICE
final public static String WSDL_SERVICE(Code)
Standard property: name of WSDL service.

Type: javax.xml.namespace.QName






Method Detail
getScope
public Scope getScope(String name)(Code)
Gets the scope of a property.
Parameters:
  name - Name of the property Scope of the property
throws:
  java.lang.IllegalArgumentException - if a non-existantproperty name is specified



setScope
public void setScope(String name, Scope scope)(Code)
Sets the scope of a property.
Parameters:
  name - Name of the property associated with theMessageContext
Parameters:
  scope - Desired scope of the property
throws:
  java.lang.IllegalArgumentException - if an illegalproperty name is specified



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