Java Code Examples for org.apache.cxf.phase.Phase#PRE_MARSHAL

The following examples show how to use org.apache.cxf.phase.Phase#PRE_MARSHAL . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ServerSpanTagInterceptor.java    From java-specialagent with Apache License 2.0 4 votes vote down vote up
public ServerSpanTagInterceptor() {
  super(Phase.PRE_MARSHAL);
}
 
Example 2
Source File: ServerSpanTagInterceptor.java    From java-specialagent with Apache License 2.0 4 votes vote down vote up
public ServerSpanTagInterceptor() {
  super(Phase.PRE_MARSHAL);
}
 
Example 3
Source File: XMLStreamWriterOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public XMLStreamWriterOutInterceptor() {
    super(Phase.PRE_MARSHAL);
}
 
Example 4
Source File: JAXRSSoapBookTest.java    From cxf with Apache License 2.0 4 votes vote down vote up
public TestOutInterceptor(boolean isBadOutInterceptor) {
    super(Phase.PRE_MARSHAL);
    this.isBadOutInterceptor = isBadOutInterceptor;
}
 
Example 5
Source File: LogicalHandlerFaultOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public LogicalHandlerFaultOutInterceptor(Binding binding) {
    super(binding, Phase.PRE_MARSHAL);
    ending = new LogicalHandlerFaultOutEndingInterceptor(binding);
}
 
Example 6
Source File: LogicalHandlerOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public LogicalHandlerOutInterceptor(Binding binding) {
    super(binding, Phase.PRE_MARSHAL);
    ending = new LogicalHandlerOutEndingInterceptor(binding);
}
 
Example 7
Source File: BeanValidationOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public BeanValidationOutInterceptor() {
    super(Phase.PRE_MARSHAL);
}
 
Example 8
Source File: StaxSchemaValidationOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public StaxSchemaValidationOutInterceptor() {
    super(Phase.PRE_MARSHAL);
}