Java Code Examples for org.apache.cxf.phase.Phase#RECEIVE
The following examples show how to use
org.apache.cxf.phase.Phase#RECEIVE .
These examples are extracted from open source projects.
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 Project: wildfly-camel File: CXFWSInterceptorTest.java License: 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 Project: java-specialagent File: ClientSpanTagInterceptor.java License: Apache License 2.0 | 4 votes |
public ClientSpanTagInterceptor() { super(Phase.RECEIVE); }
Example 3
Source Project: java-specialagent File: ClientSpanTagInterceptor.java License: Apache License 2.0 | 4 votes |
public ClientSpanTagInterceptor() { super(Phase.RECEIVE); }
Example 4
Source Project: cxf File: LoggingInInterceptor.java License: Apache License 2.0 | 4 votes |
public LoggingInInterceptor() { super(Phase.RECEIVE); }
Example 5
Source Project: eet-client File: TimingReceiveInterceptor.java License: MIT License | 4 votes |
private TimingReceiveInterceptor() { super(Phase.RECEIVE); }
Example 6
Source Project: carbon-apimgt File: URLValidationInterceptor.java License: Apache License 2.0 | 4 votes |
public URLValidationInterceptor() throws IOException, APIManagementException { super(Phase.RECEIVE); }
Example 7
Source Project: cxf File: BraveClientStopInterceptor.java License: Apache License 2.0 | 4 votes |
public BraveClientStopInterceptor(final HttpTracing brave) { this(Phase.RECEIVE, brave); }
Example 8
Source Project: cxf File: OpenTracingClientStopInterceptor.java License: Apache License 2.0 | 4 votes |
public OpenTracingClientStopInterceptor(final Tracer tracer) { this(Phase.RECEIVE, tracer); }
Example 9
Source Project: cxf File: ResponseTimeMessageInInterceptor.java License: Apache License 2.0 | 4 votes |
public ResponseTimeMessageInInterceptor() { super(Phase.RECEIVE); addBefore(AttachmentInInterceptor.class.getName()); }
Example 10
Source Project: cxf File: InMessageRecorder.java License: Apache License 2.0 | 4 votes |
public InMessageRecorder() { super(Phase.RECEIVE); }
Example 11
Source Project: cxf File: TestDispatchFeature.java License: Apache License 2.0 | 4 votes |
TestInInterceptor() { super(Phase.RECEIVE); }
Example 12
Source Project: tomee File: SaajInFaultInterceptor.java License: Apache License 2.0 | 4 votes |
public SaajInFaultInterceptor(SaajUniverse universe) { super(Phase.RECEIVE, universe); }
Example 13
Source Project: cxf File: PushBack401.java License: Apache License 2.0 | 4 votes |
PushBack401() { super(Phase.RECEIVE); }
Example 14
Source Project: cxf File: JAXRSSoapBookTest.java License: Apache License 2.0 | 4 votes |
public TestStreamDrainInterptor() { super(Phase.RECEIVE); }
Example 15
Source Project: cxf File: IncomingMessageCounterInterceptor.java License: Apache License 2.0 | 4 votes |
public IncomingMessageCounterInterceptor() { super(Phase.RECEIVE); getBefore().add(AttachmentInInterceptor.class.getName()); }
Example 16
Source Project: cxf File: ClientPolicyInFaultInterceptor.java License: Apache License 2.0 | 4 votes |
public ClientPolicyInFaultInterceptor() { super(PolicyConstants.CLIENT_POLICY_IN_FAULT_INTERCEPTOR_ID, Phase.RECEIVE); }
Example 17
Source Project: cxf File: MetricsMessageInInterceptor.java License: Apache License 2.0 | 4 votes |
public MetricsMessageInInterceptor(MetricsProvider[] p) { super(Phase.RECEIVE, p); addBefore(AttachmentInInterceptor.class.getName()); }
Example 18
Source Project: cxf File: WireTapIn.java License: 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 19
Source Project: cxf File: SoapJMSInInterceptor.java License: Apache License 2.0 | 4 votes |
public SoapJMSInInterceptor() { super(Phase.RECEIVE); addAfter(AttachmentInInterceptor.class.getName()); }
Example 20
Source Project: cxf File: PersistInInterceptor.java License: Apache License 2.0 | 4 votes |
public PersistInInterceptor() { super(Phase.RECEIVE); }