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

The following examples show how to use org.apache.cxf.phase.Phase#USER_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: SignatureFaultInterceptor.java    From eet-client with MIT License 4 votes vote down vote up
public SignatureFaultInterceptor() {
	super(Phase.USER_LOGICAL);
}
 
Example 2
Source File: NetworkAddressValidatingInterceptor.java    From sakai with Educational Community License v2.0 4 votes vote down vote up
public NetworkAddressValidatingInterceptor(RemoteHostMatcher remoteHostHandler) {
    // This needs to be registered to a late phase so that the lookup to the final method has been done.
    super(Phase.USER_LOGICAL);
    this.remoteHostMatcher = remoteHostHandler;
}
 
Example 3
Source File: NetworkAddressValidatingInterceptor.java    From sakai with Educational Community License v2.0 4 votes vote down vote up
public NetworkAddressValidatingInterceptor(RemoteHostMatcher remoteHostHandler) {
    // This needs to be registered to a late phase so that the lookup to the final method has been done.
    super(Phase.USER_LOGICAL);
    this.remoteHostMatcher = remoteHostHandler;
}
 
Example 4
Source File: ImmutableCollectionsInInterceptor.java    From rice with Educational Community License v2.0 4 votes vote down vote up
/**
 * Instantiates an ImmutableCollectionsInInterceptor and adds it to the USER_LOGICAL phase.
 */
public ImmutableCollectionsInInterceptor() {
    super(Phase.USER_LOGICAL);
}
 
Example 5
Source File: FaultHandlingInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public FaultHandlingInterceptor() {
    super(Phase.USER_LOGICAL);
}
 
Example 6
Source File: SoapFaultTest.java    From cxf with Apache License 2.0 4 votes vote down vote up
public FaultThrowingInterceptor() {
    super(Phase.USER_LOGICAL);
}
 
Example 7
Source File: ClientServerTest.java    From cxf with Apache License 2.0 4 votes vote down vote up
TestInterceptor() {
    super(Phase.USER_LOGICAL);
}
 
Example 8
Source File: FaultThrowingInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public FaultThrowingInterceptor() {
    super(Phase.USER_LOGICAL);
}
 
Example 9
Source File: TraceeResponseOutInterceptor.java    From tracee with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public TraceeResponseOutInterceptor(TraceeBackend backend, String profile) {
	super(Phase.USER_LOGICAL, OutgoingResponse, backend, profile);
}
 
Example 10
Source File: TraceeRequestOutInterceptor.java    From tracee with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public TraceeRequestOutInterceptor(TraceeBackend backend, String profile) {
	super(Phase.USER_LOGICAL, OutgoingRequest, backend, profile);
}