Apache CXF API

Uses of Interface
org.apache.cxf.message.Message

Packages that use Message
org.apache.cxf.binding Interfaces for protocol bindings and their factories. 
org.apache.cxf.continuations   
org.apache.cxf.endpoint Client and Server related classes. 
org.apache.cxf.interceptor Core interceptor interfaces which form the basis for message processing chains in CXF. 
org.apache.cxf.message   
org.apache.cxf.phase An InterceptorChain implementation which uses the concept of Phases to order message chains. 
org.apache.cxf.transport Transport related classes. 
org.apache.cxf.ws.addressing   
org.apache.cxf.ws.policy   
 

Uses of Message in org.apache.cxf.binding
 

Methods in org.apache.cxf.binding that return Message
 Message Binding.createMessage()
          Create a Message for this Binding.
 Message Binding.createMessage(Message m)
          Create a Message form the messge.
 

Methods in org.apache.cxf.binding with parameters of type Message
 Message Binding.createMessage(Message m)
          Create a Message form the messge.
 

Uses of Message in org.apache.cxf.continuations
 

Methods in org.apache.cxf.continuations that return Message
 Message ContinuationInfo.getMessage()
           
 

Constructors in org.apache.cxf.continuations with parameters of type Message
ContinuationInfo(Message m)
           
 

Uses of Message in org.apache.cxf.endpoint
 

Methods in org.apache.cxf.endpoint with parameters of type Message
protected  Conduit AbstractConduitSelector.getSelectedConduit(Message message)
          Mechanics to actually get the Conduit from the ConduitInitiator if necessary.
 void NullConduitSelector.prepare(Message message)
          Called prior to the interceptor chain being traversed.
 void DeferredConduitSelector.prepare(Message message)
          Called prior to the interceptor chain being traversed.
 void UpfrontConduitSelector.prepare(Message message)
          Called prior to the interceptor chain being traversed.
 void ConduitSelector.prepare(Message message)
          Called prior to the interceptor chain being traversed.
 void PreexistingConduitSelector.prepare(Message message)
          Called prior to the interceptor chain being traversed.
 Conduit NullConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 Conduit DeferredConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 Conduit UpfrontConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 Conduit ConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 Conduit PreexistingConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 void ClientCallback.start(Message msg)
          Called when a message is first received prior to any actions being applied to the message.
 

Uses of Message in org.apache.cxf.interceptor
 

Classes in org.apache.cxf.interceptor with type parameters of type Message
 interface Interceptor<T extends Message>
          Base interface for all interceptors.
 

Methods in org.apache.cxf.interceptor that return types with arguments of type Message
 java.util.ListIterator<Interceptor<? extends Message>> InterceptorChain.getIterator()
           
 

Methods in org.apache.cxf.interceptor with parameters of type Message
 boolean InterceptorChain.doIntercept(Message message)
           
 boolean InterceptorChain.doInterceptStartingAfter(Message message, java.lang.String startingAfterInterceptorID)
           
 boolean InterceptorChain.doInterceptStartingAt(Message message, java.lang.String startingAtInterceptorID)
           
 

Uses of Message in org.apache.cxf.message
 

Classes in org.apache.cxf.message that implement Message
 class AbstractWrappedMessage
          A base class to build your own message implementations on.
 class MessageImpl
           
 class XMLMessage
           
 

Methods in org.apache.cxf.message that return Message
 Message ExchangeImpl.getInFaultMessage()
           
 Message Exchange.getInFaultMessage()
           
 Message ExchangeImpl.getInMessage()
           
 Message Exchange.getInMessage()
           
 Message AbstractWrappedMessage.getMessage()
           
 Message ExchangeImpl.getOutFaultMessage()
           
 Message Exchange.getOutFaultMessage()
           
 Message ExchangeImpl.getOutMessage()
           
 Message Exchange.getOutMessage()
           
 

Methods in org.apache.cxf.message with parameters of type Message
static void MessageImpl.copyContent(Message m1, Message m2)
           
 Conduit ExchangeImpl.getConduit(Message message)
           
 Conduit Exchange.getConduit(Message message)
           
static MessageContentsList MessageContentsList.getContentsList(Message msg)
           
static FaultMode MessageUtils.getFaultMode(Message message)
          Determine the fault mode for the underlying (fault) message (for use on server side only).
static boolean MessageUtils.isDOMPresent(Message m)
          Returns true if the underlying content format is a W3C DOM or a SAAJ message.
static boolean MessageUtils.isFault(Message message)
          Determine if message is fault.
static boolean MessageUtils.isOutbound(Message message)
          Determine if message is outbound.
static boolean MessageUtils.isPartialResponse(Message message)
          Determine if the current message is a partial response.
static boolean MessageUtils.isRequestor(Message message)
          Determine if current messaging role is that of requestor.
 void ExchangeImpl.setInFaultMessage(Message m)
           
 void Exchange.setInFaultMessage(Message m)
           
 void ExchangeImpl.setInMessage(Message m)
           
 void Exchange.setInMessage(Message m)
           
 void AbstractWrappedMessage.setMessage(Message message)
           
 void ExchangeImpl.setOutFaultMessage(Message m)
           
 void Exchange.setOutFaultMessage(Message m)
           
 void ExchangeImpl.setOutMessage(Message m)
           
 void Exchange.setOutMessage(Message m)
           
 

Constructors in org.apache.cxf.message with parameters of type Message
AbstractWrappedMessage(Message msg)
           
XMLMessage(Message message)
           
 

Uses of Message in org.apache.cxf.phase
 

Classes in org.apache.cxf.phase with type parameters of type Message
 class AbstractPhaseInterceptor<T extends Message>
          Provides a starting point implementation for a interceptors that participate in phased message processing.
 interface PhaseInterceptor<T extends Message>
          A phase interceptor participates in a PhaseInterceptorChain.
 

Methods in org.apache.cxf.phase that return types with arguments of type Message
 java.util.ListIterator<Interceptor<? extends Message>> PhaseInterceptorChain.getIterator()
           
 java.util.Iterator<Interceptor<? extends Message>> PhaseInterceptorChain.iterator()
           
 

Methods in org.apache.cxf.phase with parameters of type Message
 boolean PhaseInterceptorChain.doIntercept(Message message)
          Intercept a message, invoking each phase's handlers in turn.
 boolean PhaseInterceptorChain.doInterceptStartingAfter(Message message, java.lang.String startingAfterInterceptorID)
          Intercept a message, invoking each phase's handlers in turn, starting after the specified interceptor.
 boolean PhaseInterceptorChain.doInterceptStartingAt(Message message, java.lang.String startingAtInterceptorID)
          Intercept a message, invoking each phase's handlers in turn, starting at the specified interceptor.
 

Uses of Message in org.apache.cxf.transport
 

Methods in org.apache.cxf.transport with parameters of type Message
 void Conduit.close(Message message)
          Close the connections associated with the message
 Conduit Destination.getBackChannel(Message inMessage, Message partialResponse, EndpointReferenceType address)
          Retreive a back-channel Conduit, which must be policy-compatible with the current Message and associated Destination.
 void MessageObserver.onMessage(Message message)
          Called for an incoming message, i.e.
 void Conduit.prepare(Message message)
          Prepare the message for sending.
 

Uses of Message in org.apache.cxf.ws.addressing
 

Methods in org.apache.cxf.ws.addressing with parameters of type Message
static EndpointReferenceType WSAContextUtils.retrieveReplyTo(Conduit conduit, Message message)
          Retrieve ReplyTo EPR from the context.
static EndpointReferenceType WSAContextUtils.retrieveTo(Conduit conduit, Message message)
          Retrieve To EPR from the context.
static boolean WSAContextUtils.retrieveUsingAddressing(Message message)
          Retrieve UsingAddressing override flag from the context
static void WSAContextUtils.storeReplyTo(EndpointReferenceType replyTo, Message message)
          Store ReplyTo EPR in the context
static void WSAContextUtils.storeTo(EndpointReferenceType to, Message message)
          Store To EPR in the context
static void WSAContextUtils.storeUsingAddressing(boolean override, Message message)
          Store UsingAddressing override flag in the context
 

Uses of Message in org.apache.cxf.ws.policy
 

Methods in org.apache.cxf.ws.policy with parameters of type Message
 void Assertor.assertMessage(Message message)
           
 


Apache CXF API

Apache CXF