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 .
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: carbon-apimgt File: ValidationInInterceptor.java License: Apache License 2.0 | 5 votes |
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 Project: cxf File: AbstractAuthorizingInInterceptor.java License: Apache License 2.0 | 4 votes |
public AbstractAuthorizingInInterceptor(boolean uniqueId) { super(null, Phase.PRE_INVOKE, uniqueId); }
Example 3
Source Project: carbon-identity-framework File: ClearThreadLocalInterceptor.java License: Apache License 2.0 | 4 votes |
public ClearThreadLocalInterceptor() { super(Phase.PRE_INVOKE); }
Example 4
Source Project: cxf File: AbstractXACMLAuthorizingInterceptor.java License: Apache License 2.0 | 4 votes |
public AbstractXACMLAuthorizingInterceptor() { super(Phase.PRE_INVOKE); org.apache.wss4j.common.saml.OpenSAMLUtil.initSamlEngine(); }
Example 5
Source Project: cxf File: OAuthRequestInterceptor.java License: Apache License 2.0 | 4 votes |
public String getPhase() { return Phase.PRE_INVOKE; }
Example 6
Source Project: cxf File: WSS4JPrincipalInterceptor.java License: Apache License 2.0 | 4 votes |
public WSS4JPrincipalInterceptor() { super(Phase.PRE_INVOKE); }
Example 7
Source Project: carbon-apimgt File: BasicAuthenticationInterceptor.java License: Apache License 2.0 | 4 votes |
public BasicAuthenticationInterceptor() { //We will use PRE_INVOKE phase as we need to process message before hit actual service super(Phase.PRE_INVOKE); }
Example 8
Source Project: carbon-apimgt File: PreAuthenticationInterceptor.java License: Apache License 2.0 | 4 votes |
public PreAuthenticationInterceptor() { //We will use PRE_INVOKE phase as we need to process message before hit actual service super(Phase.PRE_INVOKE); }
Example 9
Source Project: cxf File: MetricsMessageInPreInvokeInterceptor.java License: Apache License 2.0 | 4 votes |
public MetricsMessageInPreInvokeInterceptor(MetricsProvider[] p) { super(Phase.PRE_INVOKE, p); }
Example 10
Source Project: carbon-apimgt File: TokenMergeInterceptor.java License: Apache License 2.0 | 4 votes |
public TokenMergeInterceptor() { //We will use PRE_INVOKE phase as we need to process message before hit actual service super(Phase.PRE_INVOKE); }
Example 11
Source Project: cxf File: HolderInInterceptor.java License: Apache License 2.0 | 4 votes |
public HolderInInterceptor() { super(Phase.PRE_INVOKE); }
Example 12
Source Project: tracee File: TraceeResponseInInterceptor.java License: BSD 3-Clause "New" or "Revised" License | 4 votes |
public TraceeResponseInInterceptor(TraceeBackend backend, String profile) { super(Phase.PRE_INVOKE, IncomingResponse, backend, profile); }
Example 13
Source Project: carbon-apimgt File: PostAuthenticationInterceptor.java License: Apache License 2.0 | 4 votes |
public PostAuthenticationInterceptor() { //We will use PRE_INVOKE phase as we need to process message before hit actual service super(Phase.PRE_INVOKE); }
Example 14
Source Project: carbon-apimgt File: ETagInInterceptor.java License: Apache License 2.0 | 4 votes |
public ETagInInterceptor() { super(Phase.PRE_INVOKE); }
Example 15
Source Project: cxf File: StaxDataBinding.java License: Apache License 2.0 | 4 votes |
RemoveStaxInEndingInterceptor() { super(Phase.PRE_INVOKE); addBefore(StaxInEndingInterceptor.class.getName()); }
Example 16
Source Project: geofence File: AuthorizationHandler.java License: GNU General Public License v2.0 | 4 votes |
public AuthorizationHandler() { super(Phase.PRE_INVOKE); }
Example 17
Source Project: cxf File: ClaimsAuthorizingInterceptor.java License: Apache License 2.0 | 4 votes |
public ClaimsAuthorizingInterceptor() { super(Phase.PRE_INVOKE); }
Example 18
Source Project: cxf File: OpenTracingStartInterceptor.java License: Apache License 2.0 | 4 votes |
public OpenTracingStartInterceptor(Tracer tracer) { super(Phase.PRE_INVOKE, tracer); }
Example 19
Source Project: cxf File: CipherSuiteChecker.java License: Apache License 2.0 | 4 votes |
public CipherSuiteChecker() { super(Phase.PRE_INVOKE); }
Example 20
Source Project: cxf File: StaxInEndingInterceptor.java License: Apache License 2.0 | 4 votes |
public StaxInEndingInterceptor() { super(Phase.PRE_INVOKE); }