Stay organized with collections
Save and categorize content based on your preferences.
CertSelector
interface CertSelector : Cloneable
Known Direct Subclasses
X509CertSelector |
A CertSelector that selects X509Certificates that match all specified criteria.
|
|
A selector that defines a set of criteria for selecting Certificate
s. Classes that implement this interface are often used to specify which Certificate
s should be retrieved from a CertStore
.
Concurrent Access
Unless otherwise specified, the methods defined in this interface are not thread-safe. Multiple threads that need to access a single object concurrently should synchronize amongst themselves and provide the necessary locking. Multiple threads each manipulating separate objects need not synchronize.
Summary
Public methods |
abstract Any |
Makes a copy of this CertSelector .
|
abstract Boolean |
Decides whether a Certificate should be selected.
|
Public methods
clone
abstract fun clone(): Any
Makes a copy of this CertSelector
. Changes to the copy will not affect the original and vice versa.
Return |
Any |
a copy of this CertSelector |
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. |
match
abstract fun match(cert: Certificate!): Boolean
Decides whether a Certificate
should be selected.
Parameters |
cert |
Certificate!: the Certificate to be checked |
Return |
Boolean |
true if the Certificate should be selected, false otherwise |
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,["# CertSelector\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nCertSelector\n============\n\n```\ninterface CertSelector : Cloneable\n```\n\n|--------------------------------------|\n| [java.security.cert.CertSelector](#) |\n\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [X509CertSelector](/reference/kotlin/java/security/cert/X509CertSelector) |---------------------------------------------------------------------------|-------------------------------------------------------------------------------------| | [X509CertSelector](/reference/kotlin/java/security/cert/X509CertSelector) | A `CertSelector` that selects `X509Certificates` that match all specified criteria. | |\n\nA selector that defines a set of criteria for selecting `Certificate`s. Classes that implement this interface are often used to specify which `Certificate`s should be retrieved from a `CertStore`.\n\n**Concurrent Access**\n\nUnless otherwise specified, the methods defined in this interface are not thread-safe. Multiple threads that need to access a single object concurrently should synchronize amongst themselves and provide the necessary locking. Multiple threads each manipulating separate objects need not synchronize.\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 `CertSelector`. |\n| abstract [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) | [match](#match(java.security.cert.Certificate))`(`cert:` `[Certificate](/reference/kotlin/java/security/cert/Certificate)!`)` Decides whether a `Certificate` should be selected. |\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 `CertSelector`. 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 `CertSelector` |\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. |\n\n### match\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun match(cert: Certificate!): Boolean\n```\n\nDecides whether a `Certificate` should be selected.\n\n| Parameters ||\n|--------|---------------------------------------------------------------------------------------------------|\n| `cert` | [Certificate](/reference/kotlin/java/security/cert/Certificate)!: the `Certificate` to be checked |\n\n| Return ||\n|------------------------------------------------------------------------------------|-------------------------------------------------------------------|\n| [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) | `true` if the `Certificate` should be selected, `false` otherwise |"]]