JavaTM 2 Platform
Standard Ed. 6

java.security.cert
接口 CertSelector

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

public interface CertSelector
extends Cloneable

一个定义了一套选择 Certificate 的标准的选择器。实现此接口的类通常用于指定从 CertStore 中获取哪些 Certificate

并发访问

除非另行指定,否则此接口中所定义的方法不是线程安全的。需要并发访问单个对象的多个线程应该在它们之间实现同步并提供所需的锁定。每个线程都操作单独对象的多个线程无需实现同步。

从以下版本开始:
1.4
另请参见:
Certificate, CertStore, CertStore.getCertificates(java.security.cert.CertSelector)

方法摘要
 Object clone()
          对此 CertSelector 进行复制。
 boolean match(Certificate cert)
          决定是否应该选择某个 Certificate
 

方法详细信息

match

boolean match(Certificate cert)
决定是否应该选择某个 Certificate

参数:
cert - 要检查的 Certificate
返回:
如果应该选择该 Certificate,则返回 true;否则返回 false

clone

Object clone()
对此 CertSelector 进行复制。对副本的更改不会影响原件,反之亦然。

返回:
CertSelector 的副本

JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only