Celtix User APIs

org.objectweb.celtix.context
Interface ObjectMessageContext

All Superinterfaces:
Map<String,Object>, javax.xml.ws.handler.MessageContext
All Known Implementing Classes:
ObjectMessageContextImpl

public interface ObjectMessageContext
extends javax.xml.ws.handler.MessageContext


Nested Class Summary
 
Nested classes/interfaces inherited from interface javax.xml.ws.handler.MessageContext
javax.xml.ws.handler.MessageContext.Scope
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Field Summary
static String MESSAGE_INPUT
           
static String MESSAGE_PAYLOAD
           
static String METHOD_FAULT
           
static String METHOD_OBJ
           
static String METHOD_PARAMETERS
           
static String METHOD_RETURN
           
static String REQUEST_PROXY
           
static String REQUESTOR_ROLE_PROPERTY
           
 
Fields inherited from interface javax.xml.ws.handler.MessageContext
HTTP_REQUEST_HEADERS, HTTP_REQUEST_METHOD, HTTP_RESPONSE_CODE, HTTP_RESPONSE_HEADERS, MESSAGE_ATTACHMENTS, MESSAGE_OUTBOUND_PROPERTY, SERVLET_CONTEXT, SERVLET_REQUEST, SERVLET_RESPONSE, SERVLET_SESSION, WSDL_DESCRIPTION, WSDL_INTERFACE, WSDL_OPERATION, WSDL_PORT, WSDL_SERVICE
 
Method Summary
 Throwable getException()
           
 Object[] getMessageObjects()
           
 Method getMethod()
           
 Object getReturn()
           
 void setException(Throwable retVal)
           
 void setMessageObjects(Object... objects)
           
 void setMethod(Method method)
           
 void setRequestorRole(boolean requestor)
           
 void setReturn(Object retVal)
           
 
Methods inherited from interface javax.xml.ws.handler.MessageContext
getScope, setScope
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
 

Field Detail

MESSAGE_INPUT

static final String MESSAGE_INPUT
See Also:
Constant Field Values

MESSAGE_PAYLOAD

static final String MESSAGE_PAYLOAD
See Also:
Constant Field Values

REQUEST_PROXY

static final String REQUEST_PROXY
See Also:
Constant Field Values

REQUESTOR_ROLE_PROPERTY

static final String REQUESTOR_ROLE_PROPERTY
See Also:
Constant Field Values

METHOD_OBJ

static final String METHOD_OBJ
See Also:
Constant Field Values

METHOD_PARAMETERS

static final String METHOD_PARAMETERS
See Also:
Constant Field Values

METHOD_RETURN

static final String METHOD_RETURN
See Also:
Constant Field Values

METHOD_FAULT

static final String METHOD_FAULT
See Also:
Constant Field Values
Method Detail

getMessageObjects

Object[] getMessageObjects()

setMessageObjects

void setMessageObjects(Object... objects)

setMethod

void setMethod(Method method)

getMethod

Method getMethod()

setReturn

void setReturn(Object retVal)

getReturn

Object getReturn()

setException

void setException(Throwable retVal)

getException

Throwable getException()

setRequestorRole

void setRequestorRole(boolean requestor)

Celtix User APIs