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

The following examples show how to use org.apache.cxf.phase.Phase#POST_INVOKE . 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: PolicyLoggingInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
PolicyLoggingInterceptor(boolean o) {
    super(o ? Phase.POST_STREAM : Phase.POST_INVOKE);
}
 
Example 2
Source File: RMDeliveryInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public RMDeliveryInterceptor() {
    super(Phase.POST_INVOKE);
    addBefore(OutgoingChainInterceptor.class.getName());
}
 
Example 3
Source File: MetricsMessageInPostInvokeInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public MetricsMessageInPostInvokeInterceptor(MetricsProvider[] p) {
    super(Phase.POST_INVOKE, p);
}
 
Example 4
Source File: MPAsyncInvocationInterceptorRemoveContextImpl.java    From cxf with Apache License 2.0 4 votes vote down vote up
public MPAsyncInvocationInterceptorRemoveContextImpl() {
    super(Phase.POST_INVOKE);
}
 
Example 5
Source File: OutgoingChainInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public OutgoingChainInterceptor() {
    super(Phase.POST_INVOKE);
}
 
Example 6
Source File: SaajInInterceptor.java    From tomee with Apache License 2.0 4 votes vote down vote up
public SaajInInterceptor(SaajUniverse universe) {
    super(Phase.POST_INVOKE, universe);
}