Example usage for org.apache.commons.httpclient Credentials Credentials

List of usage examples for org.apache.commons.httpclient Credentials Credentials

Introduction

In this page you can find the example usage for org.apache.commons.httpclient Credentials Credentials.

Prototype

Credentials

Source Link

Usage

From source file:com.twinsoft.convertigo.engine.ProxyManager.java

public void setAnonymAuth(HttpState httpState) {
    // Setting anonym authentication for proxy
    if ((!this.proxyServer.equals("")) && (!this.proxyUser.equals(""))) {
        httpState.setProxyCredentials(new AuthScope(AuthScope.ANY), new Credentials() {
        });/*from www  .  j  a va2 s . c  o  m*/

        Engine.logProxyManager.debug("(ProxyManager) Proxy credentials: anonym");
    }
}