Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



This
interface defines an API for determining whether a
CRL object meets some criteria. Implementations
are used to specify critera by which a CRL objects
should be selected from a CertStore. The
match( )
method should examine the CRL it is passed and
return true if it
"matches" based on whatever
criteria the implementation defines. See
X509CRLSelector for an implementation that works
with X.509 certificates. See CertSelector for a
similar interface for use when selecting
Certificate objects from a
CertStore.


Figure 14-64. java.security.cert.CRLSelector

public interface 

CRLSelector extends Cloneable {
// Public Instance Methods
Object

clone ( );
boolean

match (CRL

crl );
}


Implementations


X509CRLSelector

Passed To


CertStore.getCRLs( ),
CertStoreSpi.engineGetCRLs( )

/ 1191