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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



This
concrete implementation of CertStoreParameters is
used when creating a CertStore object of type
"LDAP". It specifies the hostname
of the LDAP server to connect to and, optionally, the port to connect
on.


Figure 14-65. java.security.cert.LDAPCertStoreParameters

public class 

LDAPCertStoreParameters implements CertStoreParameters {
// Public Constructors
public

LDAPCertStoreParameters ( );
public

LDAPCertStoreParameters (String

serverName );
public

LDAPCertStoreParameters (String

serverName , int

port );
// Public Instance Methods
public int

getPort ( ); default:389
public String

getServerName ( ); default:"localhost"
// Methods Implementing CertStoreParameters
public Object

clone ( );
// Public Methods Overriding Object
public String

toString ( );
}



/ 1191