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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



This class
represents a node in the policy tree created by the PKIX
certification path validation algorithm. A discussion of X.509 policy
extensions and their use in the PKIX certification path algorithms is
beyond the scope of this reference.

public interface 

PolicyNode {
// Public Instance Methods
java.util.Iterator<? extends PolicyNode>

getChildren ( );
int

getDepth ( );
java.util.Set<String>

getExpectedPolicies ( );
PolicyNode

getParent ( );
java.util.Set<? extends PolicyQualifierInfo>

getPolicyQualifiers ( );
String

getValidPolicy ( );
boolean

isCritical ( );
}


Passed To


PKIXCertPathBuilderResult.PKIXCertPathBuilderResult(
)
,
PKIXCertPathValidatorResult.PKIXCertPathValidatorResult(
)

Returned By


PKIXCertPathValidatorResult.getPolicyTree( )

/ 1191