You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Sebastiano Vigna (JIRA)" <ji...@apache.org> on 2013/11/12 10:56:20 UTC

[jira] [Created] (HTTPCLIENT-1434) TrustSelfSignedStrategy should be a singleton

Sebastiano Vigna created HTTPCLIENT-1434:
--------------------------------------------

             Summary: TrustSelfSignedStrategy should be a singleton
                 Key: HTTPCLIENT-1434
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1434
             Project: HttpComponents HttpClient
          Issue Type: Improvement
          Components: HttpClient
    Affects Versions: 4.3.1
            Reporter: Sebastiano Vigna
            Priority: Trivial


TrustSelfSignedStrategy should be a singleton, as it happens for several other strategies in HTTP Client. For example, 

public class TrustSelfSignedStrategy implements TrustStrategy {

   public static final TrustSelfSignedStrategy INSTANCE = new TrustSelfSignedStrategy();

   private TrustSelfSignedStrategy() {}

    public boolean isTrusted(
            final X509Certificate[] chain, final String authType) throws CertificateException {
        return chain.length == 1;
    }

}

Incidentally, I noted that other strategies (e.g., NoConnectionReuseStrategy) have a public constructor, which violates the Singleton design pattern.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org