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

The following examples show how to use org.apache.cxf.phase.Phase#PRE_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: ValidationInInterceptor.java    From carbon-apimgt with Apache License 2.0 5 votes vote down vote up
public ValidationInInterceptor() {
    super(Phase.PRE_INVOKE);
    ValidatorFactory defaultFactory = Validation.buildDefaultValidatorFactory();
    validator = defaultFactory.getValidator();
    if (validator == null) {
        log.warn("Bean Validation provider could not be found, no validation will be performed");
    } else {
        log.debug("Validation In-Interceptor initialized successfully");
    }
}
 
Example 2
Source File: HolderInInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public HolderInInterceptor() {
    super(Phase.PRE_INVOKE);
}
 
Example 3
Source File: StaxInEndingInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public StaxInEndingInterceptor() {
    super(Phase.PRE_INVOKE);
}
 
Example 4
Source File: CipherSuiteChecker.java    From cxf with Apache License 2.0 4 votes vote down vote up
public CipherSuiteChecker() {
    super(Phase.PRE_INVOKE);
}
 
Example 5
Source File: OpenTracingStartInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public OpenTracingStartInterceptor(Tracer tracer) {
    super(Phase.PRE_INVOKE, tracer);
}
 
Example 6
Source File: ClaimsAuthorizingInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public ClaimsAuthorizingInterceptor() {
    super(Phase.PRE_INVOKE);
}
 
Example 7
Source File: AuthorizationHandler.java    From geofence with GNU General Public License v2.0 4 votes vote down vote up
public AuthorizationHandler()
{
    super(Phase.PRE_INVOKE);
}
 
Example 8
Source File: StaxDataBinding.java    From cxf with Apache License 2.0 4 votes vote down vote up
RemoveStaxInEndingInterceptor() {
    super(Phase.PRE_INVOKE);
    addBefore(StaxInEndingInterceptor.class.getName());
}
 
Example 9
Source File: ETagInInterceptor.java    From carbon-apimgt with Apache License 2.0 4 votes vote down vote up
public ETagInInterceptor() {
    super(Phase.PRE_INVOKE);
}
 
Example 10
Source File: PostAuthenticationInterceptor.java    From carbon-apimgt with Apache License 2.0 4 votes vote down vote up
public PostAuthenticationInterceptor() {
    //We will use PRE_INVOKE phase as we need to process message before hit actual service
    super(Phase.PRE_INVOKE);
}
 
Example 11
Source File: TraceeResponseInInterceptor.java    From tracee with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public TraceeResponseInInterceptor(TraceeBackend backend, String profile) {
	super(Phase.PRE_INVOKE, IncomingResponse, backend, profile);
}
 
Example 12
Source File: AbstractAuthorizingInInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public AbstractAuthorizingInInterceptor(boolean uniqueId) {
    super(null, Phase.PRE_INVOKE, uniqueId);
}
 
Example 13
Source File: TokenMergeInterceptor.java    From carbon-apimgt with Apache License 2.0 4 votes vote down vote up
public TokenMergeInterceptor() {
    //We will use PRE_INVOKE phase as we need to process message before hit actual service
    super(Phase.PRE_INVOKE);
}
 
Example 14
Source File: MetricsMessageInPreInvokeInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public MetricsMessageInPreInvokeInterceptor(MetricsProvider[] p) {
    super(Phase.PRE_INVOKE, p);
}
 
Example 15
Source File: PreAuthenticationInterceptor.java    From carbon-apimgt with Apache License 2.0 4 votes vote down vote up
public PreAuthenticationInterceptor() {
    //We will use PRE_INVOKE phase as we need to process message before hit actual service
    super(Phase.PRE_INVOKE);
}
 
Example 16
Source File: BasicAuthenticationInterceptor.java    From carbon-apimgt with Apache License 2.0 4 votes vote down vote up
public BasicAuthenticationInterceptor() {
    //We will use PRE_INVOKE phase as we need to process message before hit actual service
    super(Phase.PRE_INVOKE);
}
 
Example 17
Source File: WSS4JPrincipalInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public WSS4JPrincipalInterceptor() {
    super(Phase.PRE_INVOKE);
}
 
Example 18
Source File: OAuthRequestInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public String getPhase() {
    return Phase.PRE_INVOKE;
}
 
Example 19
Source File: AbstractXACMLAuthorizingInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public AbstractXACMLAuthorizingInterceptor() {
    super(Phase.PRE_INVOKE);
    org.apache.wss4j.common.saml.OpenSAMLUtil.initSamlEngine();
}
 
Example 20
Source File: ClearThreadLocalInterceptor.java    From carbon-identity-framework with Apache License 2.0 4 votes vote down vote up
public ClearThreadLocalInterceptor() {
    super(Phase.PRE_INVOKE);
}