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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


ManagerFactoryParametersjavax.net.ssl

Java 1.4

This marker interface identifies
objects that provide algorithm-specific or provider-specific
initialization parameters for KeyManagerFactory
and trustManagerFactory objects. In the default
"SunJSSE" provider shiped by Sun,
the only supported type for these factory classes is
"SunX509". Factories of these types
need to be initialized with a KeyStore object but
do not require any specialized
ManagerFactoryParameters object. Therefore, the
javax.net.ssl package does not define any
subinterfaces of this interface, and it is never used with the
default provider. Third-party or future providers may use it,
however.

public interface

ManagerFactoryParameters {
}


Implementations


CertPathTrustManagerParameters,
KeyStoreBuilderParameters

Passed To


KeyManagerFactory.init( ),
KeyManagerFactorySpi.engineInit( ),
TRustManagerFactory.init( ),
TRustManagerFactorySpi.engineInit( )


    / 1191