Module: Vertx::ClientSSLSupport
- Included in:
- HttpClient, NetClient
- Defined in:
- src/main/api_shim/core/ssl_support.rb
Overview
A mixin module allowing Client SSL attributes to be set on classes
Instance Method Summary
(collapse)
Instance Method Details
- (Object) trust_all(val = nil)
154
155
156
157
158
159
160
161
|
# File 'src/main/api_shim/core/ssl_support.rb', line 154
def trust_all(val = nil)
if val
@j_del.setTrustAll(val)
self
else
@j_del.isTrustAll
end
end
|
- (Object) trust_all=(val)
149
150
151
152
|
# File 'src/main/api_shim/core/ssl_support.rb', line 149
def trust_all=(val)
@j_del.setTrustAll(val)
self
end
|