コード例 #1
0
ファイル: JolokiaServer.java プロジェクト: rhuss/jolokia
 private TrustManagerFactory getTrustManagerFactory(JolokiaServerConfig pConfig)
     throws NoSuchAlgorithmException {
   String algo = pConfig.getTrustManagerAlgorithm();
   return TrustManagerFactory.getInstance(
       algo != null ? algo : TrustManagerFactory.getDefaultAlgorithm());
 }