Module java.base

Interface CertSelector

所有超级接口:
Cloneable
所有已知实现类:
X509CertSelector

public interface CertSelector extends Cloneable
一个定义选择Certificate的一组条件的选择器。实现此接口的类通常用于指定应从CertStore中检索哪些Certificate

并发访问

除非另有说明,此接口中定义的方法不是线程安全的。需要同时访问单个对象的多个线程应在彼此之间同步并提供必要的锁定。每个操作不同对象的多个线程无需同步。

自版本:
1.4
参见:
  • Method Summary

    Modifier and Type
    Method
    Description
    clone()
    复制此CertSelector
    boolean
    决定是否应选择Certificate
  • Method Details

    • match

      boolean match(Certificate cert)
      决定是否应选择Certificate
      参数:
      cert - 要检查的Certificate
      返回:
      如果应选择Certificate,则返回true,否则返回false
    • clone

      Object clone()
      复制此CertSelector。对副本的更改不会影响原始副本,反之亦然。
      返回:
      CertSelector的副本