Java Code Examples for org.apache.cxf.phase.Phase#RECEIVE
The following examples show how to use
org.apache.cxf.phase.Phase#RECEIVE .
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: CXFWSInterceptorTest.java From wildfly-camel with Apache License 2.0 | 5 votes |
public CountDownInterceptor(CountDownLatch latch) { super(Phase.RECEIVE); // Verify common interceptors can be added getBefore().add(PolicyInInterceptor.class.getName()); getBefore().add(LoggingInInterceptor.class.getName()); getBefore().add(AttachmentInInterceptor.class.getName()); this.latch = latch; }
Example 2
Source File: SaajInFaultInterceptor.java From tomee with Apache License 2.0 | 4 votes |
public SaajInFaultInterceptor(SaajUniverse universe) { super(Phase.RECEIVE, universe); }
Example 3
Source File: PersistInInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public PersistInInterceptor() { super(Phase.RECEIVE); }
Example 4
Source File: SoapJMSInInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public SoapJMSInInterceptor() { super(Phase.RECEIVE); addAfter(AttachmentInInterceptor.class.getName()); }
Example 5
Source File: WireTapIn.java From cxf with Apache License 2.0 | 4 votes |
/** * Instantiates a new WireTapIn * @param limit * @param threshold the log threshold */ public WireTapIn(int limit, long threshold) { super(Phase.RECEIVE); this.limit = limit; this.threshold = threshold; }
Example 6
Source File: MetricsMessageInInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public MetricsMessageInInterceptor(MetricsProvider[] p) { super(Phase.RECEIVE, p); addBefore(AttachmentInInterceptor.class.getName()); }
Example 7
Source File: ClientPolicyInFaultInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public ClientPolicyInFaultInterceptor() { super(PolicyConstants.CLIENT_POLICY_IN_FAULT_INTERCEPTOR_ID, Phase.RECEIVE); }
Example 8
Source File: IncomingMessageCounterInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public IncomingMessageCounterInterceptor() { super(Phase.RECEIVE); getBefore().add(AttachmentInInterceptor.class.getName()); }
Example 9
Source File: JAXRSSoapBookTest.java From cxf with Apache License 2.0 | 4 votes |
public TestStreamDrainInterptor() { super(Phase.RECEIVE); }
Example 10
Source File: PushBack401.java From cxf with Apache License 2.0 | 4 votes |
PushBack401() { super(Phase.RECEIVE); }
Example 11
Source File: ClientSpanTagInterceptor.java From java-specialagent with Apache License 2.0 | 4 votes |
public ClientSpanTagInterceptor() { super(Phase.RECEIVE); }
Example 12
Source File: TestDispatchFeature.java From cxf with Apache License 2.0 | 4 votes |
TestInInterceptor() { super(Phase.RECEIVE); }
Example 13
Source File: InMessageRecorder.java From cxf with Apache License 2.0 | 4 votes |
public InMessageRecorder() { super(Phase.RECEIVE); }
Example 14
Source File: ResponseTimeMessageInInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public ResponseTimeMessageInInterceptor() { super(Phase.RECEIVE); addBefore(AttachmentInInterceptor.class.getName()); }
Example 15
Source File: OpenTracingClientStopInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public OpenTracingClientStopInterceptor(final Tracer tracer) { this(Phase.RECEIVE, tracer); }
Example 16
Source File: BraveClientStopInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public BraveClientStopInterceptor(final HttpTracing brave) { this(Phase.RECEIVE, brave); }
Example 17
Source File: URLValidationInterceptor.java From carbon-apimgt with Apache License 2.0 | 4 votes |
public URLValidationInterceptor() throws IOException, APIManagementException { super(Phase.RECEIVE); }
Example 18
Source File: TimingReceiveInterceptor.java From eet-client with MIT License | 4 votes |
private TimingReceiveInterceptor() { super(Phase.RECEIVE); }
Example 19
Source File: LoggingInInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public LoggingInInterceptor() { super(Phase.RECEIVE); }
Example 20
Source File: ClientSpanTagInterceptor.java From java-specialagent with Apache License 2.0 | 4 votes |
public ClientSpanTagInterceptor() { super(Phase.RECEIVE); }