public class PKIXExtendedBuilderParameters extends Object implements CertPathParameters
PKIXBuilderParameters| Modifier and Type | Class and Description |
|---|---|
static class |
PKIXExtendedBuilderParameters.Builder |
| Modifier and Type | Method and Description |
|---|---|
Object |
clone()
Creates and returns a copy of this
Object. |
PKIXExtendedParameters |
getBaseParameters() |
Set |
getExcludedCerts()
Excluded certificates are not used for building a certification path.
|
int |
getMaxPathLength()
Returns the value of the maximum number of intermediate non-self-issued
certificates in the certification path.
|
public PKIXExtendedParameters getBaseParameters()
public Set getExcludedCerts()
The returned set is immutable.
public int getMaxPathLength()
public Object clone()
ObjectObject. The default
implementation returns a so-called "shallow" copy: It creates a new
instance of the same class and then copies the field values (including
object references) from this instance to the new instance. A "deep" copy,
in contrast, would also recursively clone nested objects. A subclass that
needs to implement this kind of cloning should call super.clone()
to create the new instance and then create deep copies of the nested,
mutable objects.clone in interface CertPathParametersclone in class Object