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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



An instance of this class is returned upon
successful validation by the validate(
)

method of a CertPathValidator created for the
"PKIX" algorithm.
getPublicKey( ) returns the validated public key
of the subject of the certificate chain. gettrustAnchor(
)
returns the
TRustAnchor that anchors the chain.


Figure 14-69. java.security.cert.PKIXCertPathValidatorResult

public class 

PKIXCertPathValidatorResult implements CertPathValidatorResult {
// Public Constructors
public

PKIXCertPathValidatorResult (TrustAnchor

trustAnchor ,
PolicyNode

policyTree ,
java.security.PublicKey

subjectPublicKey );
// Public Instance Methods
public PolicyNode

getPolicyTree ( );
public java.security.PublicKey

getPublicKey ( );
public TrustAnchor

getTrustAnchor ( );
// Methods Implementing CertPathValidatorResult
public Object

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

toString ( );
}


Subclasses


PKIXCertPathBuilderResult

/ 1191