to top
Android APIs
public abstract class

CertPathBuilderSpi

extends Object
java.lang.Object
   ↳ java.security.cert.CertPathBuilderSpi

Class Overview

The Service Provider Interface (SPI) for the CertPathBuilder class to be implemented by security providers.

Summary

Public Constructors
CertPathBuilderSpi()
Creates a new CertPathBuilderSpi instance.
Public Methods
abstract CertPathBuilderResult engineBuild( CertPathParameters params)
Builds a certification path with the specified algorithm parameters.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public CertPathBuilderSpi ()

Added in API level 1

Creates a new CertPathBuilderSpi instance.

Public Methods

public abstract CertPathBuilderResult engineBuild (CertPathParameters params)

Added in API level 1

Builds a certification path with the specified algorithm parameters.

Parameters
params the algorithm parameters.
Returns
  • a result of the build.
Throws
CertPathBuilderException if the build fails.
InvalidAlgorithmParameterException if the specified parameters cannot be used to build the path with this builder.
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.