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