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

The following examples show how to use org.apache.cxf.phase.Phase#PRE_PROTOCOL . 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: ETagOutInterceptor.java    From carbon-apimgt with Apache License 2.0 4 votes vote down vote up
public ETagOutInterceptor() {
    super(Phase.PRE_PROTOCOL);
}
 
Example 2
Source File: SpnegoContextTokenInInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
private SpnegoContextTokenFinderInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(WSS4JInInterceptor.class.getName());
}
 
Example 3
Source File: StaxActionInInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public StaxActionInInterceptor(List<XMLSecurityConstants.Action> inActions) {
    super(Phase.PRE_PROTOCOL);
    this.inActions = inActions;
    this.getBefore().add(StaxSecurityContextInInterceptor.class.getName());
}
 
Example 4
Source File: UsernameTokenInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
/**
 * @param p
 */
public UsernameTokenInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JOutInterceptor.class.getName());
}
 
Example 5
Source File: BasicAuthInInterceptor.java    From yes-cart with Apache License 2.0 4 votes vote down vote up
public BasicAuthInInterceptor() {
    super(Phase.PRE_PROTOCOL);
}
 
Example 6
Source File: SpnegoContextTokenInInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
private SpnegoContextTokenFinderInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(WSS4JInInterceptor.class.getName());
}
 
Example 7
Source File: SpnegoContextTokenInInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
public SpnegoContextTokenInInterceptor() {
    super(Phase.PRE_PROTOCOL);
}
 
Example 8
Source File: IssuedTokenInterceptorProvider.java    From steady with Apache License 2.0 4 votes vote down vote up
public IssuedTokenInInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(WSS4JInInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
}
 
Example 9
Source File: PolicyBasedWSS4JOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public PolicyBasedWSS4JOutInterceptor() {
    super(Phase.PRE_PROTOCOL);
    getAfter().add(SAAJOutInterceptor.class.getName());
    ending = createEndingInterceptor();
}
 
Example 10
Source File: AbstractTokenInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public AbstractTokenInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(PolicyBasedWSS4JOutInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JStaxInInterceptor.class.getName());
}
 
Example 11
Source File: UsernameTokenInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
/**
 * @param p
 */
public UsernameTokenInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JOutInterceptor.class.getName());
}
 
Example 12
Source File: SamlTokenInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
/**
 * @param p
 */
public SamlTokenInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(PolicyBasedWSS4JOutInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
}
 
Example 13
Source File: SamlTokenInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
/**
 * @param p
 */
public SamlTokenInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(PolicyBasedWSS4JOutInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
}
 
Example 14
Source File: UsernameTokenInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
/**
 * @param p
 */
public UsernameTokenInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JOutInterceptor.class.getName());
}
 
Example 15
Source File: RMCaptureOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
CaptureStart() {
    super(Phase.PRE_PROTOCOL);
}
 
Example 16
Source File: PolicyBasedWSS4JOutInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
public PolicyBasedWSS4JOutInterceptor() {
    super(Phase.PRE_PROTOCOL);
    getAfter().add(SAAJOutInterceptor.class.getName());
    ending = createEndingInterceptor();
}
 
Example 17
Source File: RMSoapOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
/**
 * Constructor.
 */
public RMSoapOutInterceptor() {
    super(Phase.PRE_PROTOCOL);

    addAfter(MAPCodec.class.getName());
}
 
Example 18
Source File: IssuedTokenInterceptorProvider.java    From steady with Apache License 2.0 4 votes vote down vote up
public IssuedTokenInInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(WSS4JInInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
}
 
Example 19
Source File: IssuedTokenInterceptorProvider.java    From steady with Apache License 2.0 4 votes vote down vote up
public IssuedTokenInInterceptor() {
    super(Phase.PRE_PROTOCOL);
    addAfter(WSS4JInInterceptor.class.getName());
    addAfter(PolicyBasedWSS4JInInterceptor.class.getName());
}
 
Example 20
Source File: SecureConversationInInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
public SecureConversationInInterceptor() {
    super(Phase.PRE_PROTOCOL);
}