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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



This marker interface defines the type, but
not the content, of the parameters object that is passed to the
CertStore.getInstance( ) methods. It does not
define any methods of its own and simply requires that all
implementing classes be cloneable. Use one of the concrete
implementations of this class for CertStore
objects of type "LDAP" and
"Collection".


Figure 14-61. java.security.cert.CertStoreParameters

public interface 

CertStoreParameters extends Cloneable {
// Public Instance Methods
Object

clone ( );
}


Implementations


CollectionCertStoreParameters,
LDAPCertStoreParameters

Passed To


CertStore.{CertStore( ), getInstance(
)}
, CertStoreSpi.CertStoreSpi( )

Returned By


CertStore.getCertStoreParameters( )


/ 1191