FileDocCategorySizeDatePackage
CertPathTrustManagerParameters.javaAPI DocAndroid 1.5 API1795Wed May 06 22:41:06 BST 2009javax.net.ssl

CertPathTrustManagerParameters

public class CertPathTrustManagerParameters extends Object implements ManagerFactoryParameters
Certification path parameters to provide to certification path based {@link TrustManager}.
since
Android 1.0

Fields Summary
private CertPathParameters
param
Constructors Summary
public CertPathTrustManagerParameters(CertPathParameters parameters)
Creates a new {@code CertPathTrustManagerParameters} with the specified certification path parameters.

param
parameters the certification path parameters.
since
Android 1.0

        param = (CertPathParameters) parameters.clone();
    
Methods Summary
public java.security.cert.CertPathParametersgetParameters()
Returns a copy of the certification path parameters.

return
a copy of the certification path parameters.
since
Android 1.0

        return (CertPathParameters) param.clone();