模块  java.base
软件包  javax.net.ssl

Class SSLPermission

  • 实现的所有接口
    SerializableGuard

    public final class SSLPermission
    extends BasicPermission
    此类用于各种网络权限。 SSLPermission包含名称(也称为“目标名称”)但没有操作列表; 您要么拥有命名权限,要么不拥有。

    目标名称是网络权限的名称(见下文)。 命名约定遵循分层属性命名约定。 此外,星号可能出现在名称的末尾,在“。”之后,或单独出现,以表示通配符匹配。 例如:“foo。*”和“*”表示通配符匹配,而“* foo”和“a * b”表示不匹配。

    下表列出了所有可能的SSLPermission目标名称,并且每个名称都提供了权限允许的描述以及授予代码权限的风险的讨论。

    permission name, what it allows, and associated risks Permission Target Name What the Permission Allows Risks of Allowing this Permission setHostnameVerifier The ability to set a callback which can decide whether to allow a mismatch between the host being connected to by an HttpsURLConnection and the common name field in server certificate. Malicious code can set a verifier that monitors host names visited by HttpsURLConnection requests or that allows server certificates with invalid common names. getSSLSessionContext The ability to get the SSLSessionContext of an SSLSession. Malicious code may monitor sessions which have been established with SSL peers or might invalidate sessions to slow down performance. setDefaultSSLContext The ability to set the default SSL context Malicious code can set a context that monitors the opening of connections or the plaintext data that is transmitted.
    从以下版本开始:
    1.4
    另请参见:
    BasicPermissionPermissionPermissionsPermissionCollectionSecurityManagerSerialized Form
    • 构造方法详细信息

      • SSLPermission

        public SSLPermission​(String name)
        创建具有指定名称的新SSLPermission。 名称是SSLPermission的符号名称,例如“setDefaultAuthenticator”等。星号可能出现在名称末尾,“。”之后,或者单独出现,表示通配符匹配。
        参数
        name - SSLPermission的名称。
        异常
        NullPointerException - 如果 name为空。
        IllegalArgumentException - 如果 name为空。
      • SSLPermission

        public SSLPermission​(String name,
                             String actions)
        创建具有指定名称的新SSLPermission对象。 该名称是SSLPermission的符号名称,并且操作String当前未使用,应为null。
        参数
        name - SSLPermission的名称。
        actions - 被忽略。
        异常
        NullPointerException - 如果 name为空。
        IllegalArgumentException - 如果 name为空。