Java Code Examples for org.apache.cxf.phase.Phase#PRE_LOGICAL
The following examples show how to use
org.apache.cxf.phase.Phase#PRE_LOGICAL .
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: RMInInterceptorTest.java From cxf with Apache License 2.0 | 6 votes |
@Test public void testOrdering() { control.replay(); Phase p = new Phase(Phase.PRE_LOGICAL, 1); SortedSet<Phase> phases = new TreeSet<>(); phases.add(p); PhaseInterceptorChain chain = new PhaseInterceptorChain(phases); MAPAggregator map = new MAPAggregator(); RMInInterceptor rmi = new RMInInterceptor(); chain.add(rmi); chain.add(map); Iterator<Interceptor<? extends Message>> it = chain.iterator(); assertSame("Unexpected order.", rmi, it.next()); assertSame("Unexpected order.", map, it.next()); }
Example 2
Source File: JaxWsClientTest.java From cxf with Apache License 2.0 | 4 votes |
public NestedFaultThrower() { super(Phase.PRE_LOGICAL); addBefore(FaultThrower.class.getName()); }
Example 3
Source File: MustUnderstandInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public MustUnderstandEndingInterceptor() { super(Phase.PRE_LOGICAL); addAfter(OneWayProcessorInterceptor.class.getName()); }
Example 4
Source File: SoapActionInInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public SoapActionInAttemptTwoInterceptor(String action) { super(action, Phase.PRE_LOGICAL); this.action = action; }
Example 5
Source File: SoapHeaderOutFilterInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public SoapHeaderOutFilterInterceptor() { super(Phase.PRE_LOGICAL); }
Example 6
Source File: WebFaultInInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public WebFaultInInterceptor() { super(Phase.PRE_LOGICAL); }
Example 7
Source File: AbstractRMInterceptor.java From cxf with Apache License 2.0 | 4 votes |
protected AbstractRMInterceptor() { this(Phase.PRE_LOGICAL); }
Example 8
Source File: RMCaptureInInterceptor.java From cxf with Apache License 2.0 | 4 votes |
RMCaptureInEnd() { super(Phase.PRE_LOGICAL); addBefore(RMInInterceptor.class.getName()); }
Example 9
Source File: SecurityVerificationOutInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public SecurityVerificationOutInterceptor() { super(Phase.PRE_LOGICAL); }
Example 10
Source File: JaxWsClientTest.java From cxf with Apache License 2.0 | 4 votes |
public FaultThrower() { super(Phase.PRE_LOGICAL); }
Example 11
Source File: SecurityVerificationOutInterceptor.java From steady with Apache License 2.0 | 4 votes |
public SecurityVerificationOutInterceptor() { super(Phase.PRE_LOGICAL); }
Example 12
Source File: SwAOutInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public SwAOutInterceptor() { super(Phase.PRE_LOGICAL); addAfter(HolderOutInterceptor.class.getName()); addBefore(WrapperClassOutInterceptor.class.getName()); }
Example 13
Source File: WrapperClassOutInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public WrapperClassOutInterceptor() { super(Phase.PRE_LOGICAL); }
Example 14
Source File: HolderOutInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public HolderOutInterceptor() { super(Phase.PRE_LOGICAL); addBefore(WrapperClassOutInterceptor.class.getName()); }
Example 15
Source File: OneWayProcessorInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public OneWayProcessorInterceptor() { super(Phase.PRE_LOGICAL); }
Example 16
Source File: ClientRequestFilterInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public ClientRequestFilterInterceptor() { super(Phase.PRE_LOGICAL); }
Example 17
Source File: CustomInFaultyInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public CustomInFaultyInterceptor() { super(Phase.PRE_LOGICAL); }
Example 18
Source File: ClientBeanValidationOutInterceptor.java From cxf with Apache License 2.0 | 4 votes |
public ClientBeanValidationOutInterceptor() { super(Phase.PRE_LOGICAL); }
Example 19
Source File: SecurityVerificationOutInterceptor.java From steady with Apache License 2.0 | 4 votes |
public SecurityVerificationOutInterceptor() { super(Phase.PRE_LOGICAL); }
Example 20
Source File: SecurityVerificationOutInterceptor.java From steady with Apache License 2.0 | 4 votes |
public SecurityVerificationOutInterceptor() { super(Phase.PRE_LOGICAL); }