Package org.apache.cxf.binding
Interface Binding
- 
- All Superinterfaces:
- InterceptorProvider
 
 public interface Binding extends InterceptorProvider A Binding provides interceptors and message creation logic for a specific protocol binding.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description MessagecreateMessage()Create a Message for this Binding.MessagecreateMessage(Message m)Create a Message form the message.BindingInfogetBindingInfo()Get the BindingInfo for this binding.- 
Methods inherited from interface org.apache.cxf.interceptor.InterceptorProvidergetInFaultInterceptors, getInInterceptors, getOutFaultInterceptors, getOutInterceptors
 
- 
 
- 
- 
- 
Method Detail- 
createMessageMessage createMessage() Create a Message for this Binding.- Returns:
- the Binding message
 
 - 
createMessageMessage createMessage(Message m) Create a Message form the message.- Parameters:
- m- the message used for creating a binding message
- Returns:
- the Binding message
 
 - 
getBindingInfoBindingInfo getBindingInfo() Get the BindingInfo for this binding.- Returns:
- the BingdingInfo Object
 
 
- 
 
-