Java Doc for CertPathValidator.java in  » 6.0-JDK-Core » security » java » security » cert » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » security » java.security.cert 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.security.cert.CertPathValidator

CertPathValidator
public class CertPathValidator (Code)
A class for validating certification paths (also known as certificate chains).

This class uses a provider-based architecture. To create a CertPathValidator, call one of the static getInstance methods, passing in the algorithm name of the CertPathValidator desired and optionally the name of the provider desired.

Once a CertPathValidator object has been created, it can be used to validate certification paths by calling the CertPathValidator.validatevalidate method and passing it the CertPath to be validated and an algorithm-specific set of parameters. If successful, the result is returned in an object that implements the CertPathValidatorResult interface.

Concurrent Access

The static methods of this class are guaranteed to be thread-safe. Multiple threads may concurrently invoke the static methods defined in this class with no ill effects.

However, this is not true for the non-static methods defined by this class. Unless otherwise documented by a specific provider, threads that need to access a single CertPathValidator instance concurrently should synchronize amongst themselves and provide the necessary locking. Multiple threads each manipulating a different CertPathValidator instance need not synchronize.
See Also:   CertPath
version:
   1.20 05/05/07
since:
   1.4
author:
   Yassir Elley




Constructor Summary
protected  CertPathValidator(CertPathValidatorSpi validatorSpi, Provider provider, String algorithm)
     Creates a CertPathValidator object of the given algorithm, and encapsulates the given provider implementation (SPI object) in it.

Method Summary
final public  StringgetAlgorithm()
     Returns the algorithm name of this CertPathValidator.
final public static  StringgetDefaultType()
     Returns the default CertPathValidator type as specified in the Java security properties file, or the string "PKIX" if no such property exists.
public static  CertPathValidatorgetInstance(String algorithm)
     Returns a CertPathValidator object that implements the specified algorithm.

This method traverses the list of registered security Providers, starting with the most preferred Provider. A new CertPathValidator object encapsulating the CertPathValidatorSpi implementation from the first Provider that supports the specified algorithm is returned.

Note that the list of registered providers may be retrieved via the Security.getProviders Security.getProviders() method.
Parameters:
  algorithm - the name of the requested CertPathValidatoralgorithm.

public static  CertPathValidatorgetInstance(String algorithm, String provider)
     Returns a CertPathValidator object that implements the specified algorithm.

A new CertPathValidator object encapsulating the CertPathValidatorSpi implementation from the specified provider is returned.

public static  CertPathValidatorgetInstance(String algorithm, Provider provider)
     Returns a CertPathValidator object that implements the specified algorithm.

A new CertPathValidator object encapsulating the CertPathValidatorSpi implementation from the specified Provider object is returned.

final public  ProvidergetProvider()
     Returns the Provider of this CertPathValidator.
final public  CertPathValidatorResultvalidate(CertPath certPath, CertPathParameters params)
     Validates the specified certification path using the specified algorithm parameter set.


Constructor Detail
CertPathValidator
protected CertPathValidator(CertPathValidatorSpi validatorSpi, Provider provider, String algorithm)(Code)
Creates a CertPathValidator object of the given algorithm, and encapsulates the given provider implementation (SPI object) in it.
Parameters:
  validatorSpi - the provider implementation
Parameters:
  provider - the provider
Parameters:
  algorithm - the algorithm name




Method Detail
getAlgorithm
final public String getAlgorithm()(Code)
Returns the algorithm name of this CertPathValidator. the algorithm name of this CertPathValidator



getDefaultType
final public static String getDefaultType()(Code)
Returns the default CertPathValidator type as specified in the Java security properties file, or the string "PKIX" if no such property exists. The Java security properties file is located in the file named <JAVA_HOME>/lib/security/java.security. <JAVA_HOME> refers to the value of the java.home system property, and specifies the directory where the JRE is installed.

The default CertPathValidator type can be used by applications that do not want to use a hard-coded type when calling one of the getInstance methods, and want to provide a default type in case a user does not specify its own.

The default CertPathValidator type can be changed by setting the value of the "certpathvalidator.type" security property (in the Java security properties file) to the desired type. the default CertPathValidator type as specified in the Java security properties file, or the string "PKIX"if no such property exists.




getInstance
public static CertPathValidator getInstance(String algorithm) throws NoSuchAlgorithmException(Code)
Returns a CertPathValidator object that implements the specified algorithm.

This method traverses the list of registered security Providers, starting with the most preferred Provider. A new CertPathValidator object encapsulating the CertPathValidatorSpi implementation from the first Provider that supports the specified algorithm is returned.

Note that the list of registered providers may be retrieved via the Security.getProviders Security.getProviders() method.
Parameters:
  algorithm - the name of the requested CertPathValidatoralgorithm. See Appendix A in the Java Certification Path API Programmer's Guide for information about standard algorithm names. a CertPathValidator object that implements thespecified algorithm.
exception:
  NoSuchAlgorithmException - if no Provider supports aCertPathValidatorSpi implementation for thespecified algorithm.
See Also:   java.security.Provider




getInstance
public static CertPathValidator getInstance(String algorithm, String provider) throws NoSuchAlgorithmException, NoSuchProviderException(Code)
Returns a CertPathValidator object that implements the specified algorithm.

A new CertPathValidator object encapsulating the CertPathValidatorSpi implementation from the specified provider is returned. The specified provider must be registered in the security provider list.

Note that the list of registered providers may be retrieved via the Security.getProviders Security.getProviders() method.
Parameters:
  algorithm - the name of the requested CertPathValidatoralgorithm. See Appendix A in the Java Certification Path API Programmer's Guide for information about standard algorithm names.
Parameters:
  provider - the name of the provider. a CertPathValidator object that implements thespecified algorithm.
exception:
  NoSuchAlgorithmException - if a CertPathValidatorSpiimplementation for the specified algorithm is notavailable from the specified provider.
exception:
  NoSuchProviderException - if the specified provider is notregistered in the security provider list.
exception:
  IllegalArgumentException - if the provider isnull or empty.
See Also:   java.security.Provider




getInstance
public static CertPathValidator getInstance(String algorithm, Provider provider) throws NoSuchAlgorithmException(Code)
Returns a CertPathValidator object that implements the specified algorithm.

A new CertPathValidator object encapsulating the CertPathValidatorSpi implementation from the specified Provider object is returned. Note that the specified Provider object does not have to be registered in the provider list.
Parameters:
  algorithm - the name of the requestedCertPathValidator algorithm.See Appendix A in the Java Certification Path API Programmer's Guide for information about standard algorithm names.
Parameters:
  provider - the provider. a CertPathValidator object that implements thespecified algorithm.
exception:
  NoSuchAlgorithmException - if a CertPathValidatorSpiimplementation for the specified algorithm is not availablefrom the specified Provider object.
exception:
  IllegalArgumentException - if the provider isnull.
See Also:   java.security.Provider




getProvider
final public Provider getProvider()(Code)
Returns the Provider of this CertPathValidator. the Provider of this CertPathValidator



validate
final public CertPathValidatorResult validate(CertPath certPath, CertPathParameters params) throws CertPathValidatorException, InvalidAlgorithmParameterException(Code)
Validates the specified certification path using the specified algorithm parameter set.

The CertPath specified must be of a type that is supported by the validation algorithm, otherwise an InvalidAlgorithmParameterException will be thrown. For example, a CertPathValidator that implements the PKIX algorithm validates CertPath objects of type X.509.
Parameters:
  certPath - the CertPath to be validated
Parameters:
  params - the algorithm parameters the result of the validation algorithm
exception:
  CertPathValidatorException - if the CertPathdoes not validate
exception:
  InvalidAlgorithmParameterException - if the specified parameters or the type of the specified CertPath are inappropriate for this CertPathValidator




Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.