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

The following examples show how to use org.apache.cxf.phase.Phase#PREPARE_SEND . 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: STSTokenOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public STSTokenOutInterceptor(STSClient stsClient) {
    this(Phase.PREPARE_SEND, stsClient, new TokenRequestParams());
}
 
Example 2
Source File: MessageSenderInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public MessageSenderInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 3
Source File: ConnectionFactoryFeature.java    From cxf with Apache License 2.0 4 votes vote down vote up
JMSConduitConfigOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 4
Source File: STSTokenOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public STSTokenOutInterceptor(STSClient stsClient, TokenRequestParams tokenParams) {
    this(Phase.PREPARE_SEND, stsClient, tokenParams);
}
 
Example 5
Source File: TimingSendInterceptor.java    From eet-client with MIT License 4 votes vote down vote up
private TimingSendInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 6
Source File: SpnegoContextTokenOutInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
public SpnegoContextTokenOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 7
Source File: STSTokenOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public STSTokenOutInterceptor(STSAuthParams authParams, String stsWsdlLocation, Bus bus) {
    this(Phase.PREPARE_SEND, authParams, stsWsdlLocation, bus);
}
 
Example 8
Source File: MessageModeOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public MessageModeOutInterceptor(Class<?> t, QName bname) {
    super(Phase.PREPARE_SEND);
    type = t;
    this.bindingName = bname;
}
 
Example 9
Source File: KerberosTokenInterceptorProvider.java    From steady with Apache License 2.0 4 votes vote down vote up
public KerberosTokenOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 10
Source File: SpnegoContextTokenOutInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
public SpnegoContextTokenOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 11
Source File: ThrowFaultInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public ThrowFaultInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 12
Source File: GZIPOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public GZIPOutInterceptor(int threshold) {
    super(Phase.PREPARE_SEND);
    addAfter(MessageSenderInterceptor.class.getName());
    this.threshold = threshold;
}
 
Example 13
Source File: KerberosTokenInterceptorProvider.java    From steady with Apache License 2.0 4 votes vote down vote up
public KerberosTokenOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 14
Source File: Soap12FaultOutInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public Soap12FaultOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 15
Source File: IssuedTokenInterceptorProvider.java    From steady with Apache License 2.0 4 votes vote down vote up
public IssuedTokenOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 16
Source File: SecureConversationOutInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
public SecureConversationOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 17
Source File: KerberosTokenInterceptorProvider.java    From steady with Apache License 2.0 4 votes vote down vote up
public KerberosTokenOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 18
Source File: SpnegoContextTokenOutInterceptor.java    From steady with Apache License 2.0 4 votes vote down vote up
public SpnegoContextTokenOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 19
Source File: IssuedTokenInterceptorProvider.java    From steady with Apache License 2.0 4 votes vote down vote up
public IssuedTokenOutInterceptor() {
    super(Phase.PREPARE_SEND);
}
 
Example 20
Source File: TibcoSoapActionInterceptor.java    From cxf with Apache License 2.0 4 votes vote down vote up
public TibcoSoapActionInterceptor() {
    super(Phase.PREPARE_SEND);
}