class HTTPClient::JRubySSLSocket::VerifyNoneTrustManagerFactory::VerifyNoneTrustManager

Public Class Methods

new(verify_callback) click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 190
def initialize(verify_callback)
  @verify_callback = JSSEVerifyCallback.new(verify_callback)
end

Public Instance Methods

checkClientTrusted(chain, authType) click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 198
def checkClientTrusted(chain, authType); end
checkServerTrusted(chain, authType) click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 194
def checkServerTrusted(chain, authType)
  @verify_callback.call(true, chain)
end
getAcceptedIssuers() click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 199
def getAcceptedIssuers; end