Search in sources :

Example 1 with RequestBasicAuth

use of org.apache.http.localserver.RequestBasicAuth in project camel by apache.

the class HttpAuthenticationTest method getBasicHttpProcessor.

@Override
protected HttpProcessor getBasicHttpProcessor() {
    List<HttpRequestInterceptor> requestInterceptors = new ArrayList<HttpRequestInterceptor>();
    requestInterceptors.add(new RequestBasicAuth());
    List<HttpResponseInterceptor> responseInterceptors = new ArrayList<HttpResponseInterceptor>();
    responseInterceptors.add(new ResponseContent());
    responseInterceptors.add(new ResponseBasicUnauthorized());
    ImmutableHttpProcessor httpproc = new ImmutableHttpProcessor(requestInterceptors, responseInterceptors);
    return httpproc;
}
Also used : ResponseContent(org.apache.http.protocol.ResponseContent) HttpRequestInterceptor(org.apache.http.HttpRequestInterceptor) ResponseBasicUnauthorized(org.apache.http.localserver.ResponseBasicUnauthorized) ArrayList(java.util.ArrayList) HttpResponseInterceptor(org.apache.http.HttpResponseInterceptor) RequestBasicAuth(org.apache.http.localserver.RequestBasicAuth) ImmutableHttpProcessor(org.apache.http.protocol.ImmutableHttpProcessor)

Example 2 with RequestBasicAuth

use of org.apache.http.localserver.RequestBasicAuth in project camel by apache.

the class HttpsAuthenticationTest method getBasicHttpProcessor.

@Override
protected HttpProcessor getBasicHttpProcessor() {
    List<HttpRequestInterceptor> requestInterceptors = new ArrayList<HttpRequestInterceptor>();
    requestInterceptors.add(new RequestBasicAuth());
    List<HttpResponseInterceptor> responseInterceptors = new ArrayList<HttpResponseInterceptor>();
    responseInterceptors.add(new ResponseContent());
    responseInterceptors.add(new ResponseBasicUnauthorized());
    ImmutableHttpProcessor httpproc = new ImmutableHttpProcessor(requestInterceptors, responseInterceptors);
    return httpproc;
}
Also used : ResponseContent(org.apache.http.protocol.ResponseContent) HttpRequestInterceptor(org.apache.http.HttpRequestInterceptor) ResponseBasicUnauthorized(org.apache.http.localserver.ResponseBasicUnauthorized) ArrayList(java.util.ArrayList) HttpResponseInterceptor(org.apache.http.HttpResponseInterceptor) RequestBasicAuth(org.apache.http.localserver.RequestBasicAuth) ImmutableHttpProcessor(org.apache.http.protocol.ImmutableHttpProcessor)

Aggregations

ArrayList (java.util.ArrayList)2 HttpRequestInterceptor (org.apache.http.HttpRequestInterceptor)2 HttpResponseInterceptor (org.apache.http.HttpResponseInterceptor)2 RequestBasicAuth (org.apache.http.localserver.RequestBasicAuth)2 ResponseBasicUnauthorized (org.apache.http.localserver.ResponseBasicUnauthorized)2 ImmutableHttpProcessor (org.apache.http.protocol.ImmutableHttpProcessor)2 ResponseContent (org.apache.http.protocol.ResponseContent)2