CertSelector
Stay organized with collections
Save and categorize content based on your preferences.
Known Indirect 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.
Public Method Summary
abstract
Object
|
clone()
Makes a copy of this CertSelector .
|
abstract
boolean
|
|
Public Methods
public
abstract
Object
clone
()
Makes a copy of this CertSelector
. Changes to the
copy will not affect the original and vice versa.
Returns
- a copy of this
CertSelector
public
abstract
boolean
match
(Certificate cert)
Decides whether a Certificate
should be selected.
Parameters
cert |
the Certificate to be checked |
Returns
true
if the Certificate
should be selected, false
otherwise
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-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 2024-07-10 UTC."],[[["\u003cp\u003e\u003ccode\u003eCertSelector\u003c/code\u003e defines criteria for selecting \u003ccode\u003eCertificate\u003c/code\u003es, often used with \u003ccode\u003eCertStore\u003c/code\u003e to retrieve specific certificates.\u003c/p\u003e\n"],["\u003cp\u003eIt includes methods for cloning the selector and determining if a given \u003ccode\u003eCertificate\u003c/code\u003e matches the selection criteria.\u003c/p\u003e\n"],["\u003cp\u003eImplementations are not inherently thread-safe and require external synchronization for concurrent access.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eX509CertSelector\u003c/code\u003e is a known subclass used for selecting \u003ccode\u003eX509Certificates\u003c/code\u003e based on specified criteria.\u003c/p\u003e\n"]]],["`CertSelector` defines criteria for selecting `Certificate`s, often used with `CertStore`. It's implemented by classes like `X509CertSelector`. Key actions include `clone()`, which creates an independent copy of the selector, and `match(Certificate cert)`, which determines if a given `Certificate` meets the selector's criteria. Methods are not thread-safe; concurrent access requires external synchronization. `CertSelector` specifies which `Certificate`s to be retrieved from a `CertStore`.\n"],null,["# CertSelector\n\npublic interface **CertSelector** implements [Cloneable](../../../../reference/java/lang/Cloneable.html) \n\n|---|---|---|\n| Known Indirect Subclasses [X509CertSelector](../../../../reference/java/security/cert/X509CertSelector.html) |------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------| | [X509CertSelector](../../../../reference/java/security/cert/X509CertSelector.html) | A `CertSelector` that selects `X509Certificates` that match all specified criteria. | |||\n\nA selector that defines a set of criteria for selecting\n`Certificate`s. Classes that implement this interface\nare often used to specify which `Certificate`s should\nbe retrieved from a `CertStore`.\n\n\n**Concurrent Access**\n\n\nUnless otherwise specified, the methods defined in this interface are not\nthread-safe. Multiple threads that need to access a single\nobject concurrently should synchronize amongst themselves and\nprovide the necessary locking. Multiple threads each manipulating\nseparate objects need not synchronize. \n\n##### See Also\n\n- [Certificate](../../../../reference/java/security/cert/Certificate.html)\n- [CertStore](../../../../reference/java/security/cert/CertStore.html)\n- [CertStore.getCertificates(CertSelector)](../../../../reference/java/security/cert/CertStore.html#getCertificates(java.security.cert.CertSelector)) \n\n### Public Method Summary\n\n|----------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| abstract [Object](../../../../reference/java/lang/Object.html) | [clone](../../../../reference/java/security/cert/CertSelector.html#clone())() Makes a copy of this `CertSelector`. |\n| abstract boolean | [match](../../../../reference/java/security/cert/CertSelector.html#match(java.security.cert.Certificate))([Certificate](../../../../reference/java/security/cert/Certificate.html) cert) Decides whether a `Certificate` should be selected. |\n\nPublic Methods\n--------------\n\n#### public abstract [Object](../../../../reference/java/lang/Object.html)\n**clone**\n()\n\nMakes a copy of this `CertSelector`. Changes to the\ncopy will not affect the original and vice versa. \n\n##### Returns\n\n- a copy of this `CertSelector` \n\n#### public abstract boolean\n**match**\n([Certificate](../../../../reference/java/security/cert/Certificate.html) cert)\n\nDecides whether a `Certificate` should be selected. \n\n##### Parameters\n\n| cert | the `Certificate` to be checked |\n|------|---------------------------------|\n\n##### Returns\n\n- `true` if the `Certificate` should be selected, `false` otherwise"]]