Stay organized with collections
Save and categorize content based on your preferences.
CRLSelector
interface CRLSelector : Cloneable
Known Direct Subclasses
X509CRLSelector |
A CRLSelector that selects X509CRLs that match all specified criteria.
|
|
A selector that defines a set of criteria for selecting CRL
s. Classes that implement this interface are often used to specify which CRL
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 CRLSelector .
|
abstract Boolean |
Decides whether a CRL should be selected.
|
Public methods
clone
abstract fun clone(): Any
Makes a copy of this CRLSelector
. Changes to the copy will not affect the original and vice versa.
Return |
Any |
a copy of this CRLSelector |
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(crl: CRL!): Boolean
Decides whether a CRL
should be selected.
Parameters |
crl |
CRL!: the CRL to be checked |
Return |
Boolean |
true if the CRL 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,["# CRLSelector\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nCRLSelector\n===========\n\n```\ninterface CRLSelector : Cloneable\n```\n\n|-------------------------------------|\n| [java.security.cert.CRLSelector](#) |\n\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [X509CRLSelector](/reference/kotlin/java/security/cert/X509CRLSelector) |-------------------------------------------------------------------------|----------------------------------------------------------------------------| | [X509CRLSelector](/reference/kotlin/java/security/cert/X509CRLSelector) | A `CRLSelector` that selects `X509CRLs` that match all specified criteria. | |\n\nA selector that defines a set of criteria for selecting `CRL`s. Classes that implement this interface are often used to specify which `CRL`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 `CRLSelector`. |\n| abstract [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) | [match](#match(java.security.cert.CRL))`(`crl:` `[CRL](/reference/kotlin/java/security/cert/CRL)!`)` Decides whether a `CRL` 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 `CRLSelector`. 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 `CRLSelector` |\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(crl: CRL!): Boolean\n```\n\nDecides whether a `CRL` should be selected.\n\n| Parameters ||\n|-------|---------------------------------------------------------------------------|\n| `crl` | [CRL](/reference/kotlin/java/security/cert/CRL)!: the `CRL` to be checked |\n\n| Return ||\n|------------------------------------------------------------------------------------|-----------------------------------------------------------|\n| [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) | `true` if the `CRL` should be selected, `false` otherwise |"]]