public interface HostnameVerifier
在握手期间,如果URL的主机名和服务器的标识主机名不匹配,则验证机制可以回调该接口的实现者,以确定是否允许此连接。
策略可以是基于证书的或者可以依赖于其他认证方案。
当URL主机名验证的默认规则失败时,将使用这些回调。
Modifier and Type | Method and Description |
---|---|
boolean |
verify(String hostname, SSLSession session)
验证主机名是否与服务器认证方案可接受的匹配。
|
boolean verify(String hostname, SSLSession session)
hostname
- 主机名
session
- SSLSession用于连接主机
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.