Home » openjdk-7 » javax » net » ssl » [javadoc | source]
javax.net.ssl
public class: CertPathTrustManagerParameters [javadoc | source]
java.lang.Object
   javax.net.ssl.CertPathTrustManagerParameters

All Implemented Interfaces:
    ManagerFactoryParameters

A wrapper for CertPathParameters. This class is used to pass validation settings to CertPath based TrustManager s using the TrustManagerFactory.init() method.

Instances of this class are immutable.

Constructor:
 public CertPathTrustManagerParameters(CertPathParameters parameters) 
    Construct new CertPathTrustManagerParameters from the specified parameters. The parameters are cloned to protect against subsequent modification.
    Parameters:
    parameters - the CertPathParameters to be used
    Throws:
    NullPointerException - if parameters is null
Method from javax.net.ssl.CertPathTrustManagerParameters Summary:
getParameters
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.net.ssl.CertPathTrustManagerParameters Detail:
 public CertPathParameters getParameters() 
    Return a clone of the CertPathParameters encapsulated by this class.