Stay organized with collections
Save and categorize content based on your preferences.
CertPathValidatorResult
interface CertPathValidatorResult : Cloneable
Known Indirect Subclasses
|
A specification of the result of a certification path validator algorithm.
The purpose of this interface is to group (and provide type safety for) all certification path validator results. All results returned by the CertPathValidator.validate
method must implement this interface.
Summary
Public methods |
abstract Any |
Makes a copy of this CertPathValidatorResult .
|
Public methods
clone
abstract fun clone(): Any
Makes a copy of this CertPathValidatorResult
. Changes to the copy will not affect the original and vice versa.
Return |
Any |
a copy of this CertPathValidatorResult |
Exceptions |
java.lang.CloneNotSupportedException |
if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# CertPathValidatorResult\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nCertPathValidatorResult\n=======================\n\n```\ninterface CertPathValidatorResult : Cloneable\n```\n\n|-------------------------------------------------|\n| [java.security.cert.CertPathValidatorResult](#) |\n\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [PKIXCertPathValidatorResult](/reference/kotlin/java/security/cert/PKIXCertPathValidatorResult) |-------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| | [PKIXCertPathValidatorResult](/reference/kotlin/java/security/cert/PKIXCertPathValidatorResult) | This class represents the successful result of the PKIX certification path validation algorithm. | |\n\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Indirect Subclasses [PKIXCertPathBuilderResult](/reference/kotlin/java/security/cert/PKIXCertPathBuilderResult) |---------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------| | [PKIXCertPathBuilderResult](/reference/kotlin/java/security/cert/PKIXCertPathBuilderResult) | This class represents the successful result of the PKIX certification path builder algorithm. | |\n\nA specification of the result of a certification path validator algorithm.\n\nThe purpose of this interface is to group (and provide type safety for) all certification path validator results. All results returned by the [CertPathValidator.validate](/reference/kotlin/java/security/cert/CertPathValidator#validate(java.security.cert.CertPath,%20java.security.cert.CertPathParameters)) method must implement this interface.\n\nSummary\n-------\n\n| Public methods ||\n|-------------------------------------------------------------------------------------|-----------------------------------------------------------------------|\n| abstract [Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) | [clone](#clone())`()` Makes a copy of this `CertPathValidatorResult`. |\n\nPublic methods\n--------------\n\n### clone\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun clone(): Any\n```\n\nMakes a copy of this `CertPathValidatorResult`. Changes to the copy will not affect the original and vice versa.\n\n| Return ||\n|----------------------------------------------------------------------------|------------------------------------------|\n| [Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) | a copy of this `CertPathValidatorResult` |\n\n| Exceptions ||\n|----------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `java.lang.CloneNotSupportedException` | if the object's class does not support the `Cloneable` interface. Subclasses that override the `clone` method can also throw this exception to indicate that an instance cannot be cloned. |"]]