Record Class AbstractSignatureIdentityInformation.AttributeCertificateSelector
java.lang.Object
java.lang.Record
br.ufsc.labsec.signature.conformanceVerifier.AbstractSignatureIdentityInformation.AttributeCertificateSelector
- All Implemented Interfaces:
Cloneable, org.bouncycastle.util.Selector<org.bouncycastle.cert.X509AttributeCertificateHolder>
- Enclosing class:
AbstractSignatureIdentityInformation
public static record AbstractSignatureIdentityInformation.AttributeCertificateSelector(org.bouncycastle.cert.selector.X509AttributeCertificateHolderSelector selector)
extends Record
implements org.bouncycastle.util.Selector<org.bouncycastle.cert.X509AttributeCertificateHolder>
-
Constructor Summary
ConstructorsConstructorDescriptionAttributeCertificateSelector(org.bouncycastle.cert.selector.X509AttributeCertificateHolderSelector selector) Creates an instance of aAttributeCertificateSelectorrecord class. -
Method Summary
Modifier and TypeMethodDescriptionclone()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanmatch(org.bouncycastle.cert.X509AttributeCertificateHolder obj) org.bouncycastle.cert.selector.X509AttributeCertificateHolderSelectorselector()Returns the value of theselectorrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AttributeCertificateSelector
public AttributeCertificateSelector() -
AttributeCertificateSelector
public AttributeCertificateSelector(org.bouncycastle.cert.selector.X509AttributeCertificateHolderSelector selector) Creates an instance of aAttributeCertificateSelectorrecord class.- Parameters:
selector- the value for theselectorrecord component
-
-
Method Details
-
match
public boolean match(org.bouncycastle.cert.X509AttributeCertificateHolder obj) - Specified by:
matchin interfaceorg.bouncycastle.util.Selector<org.bouncycastle.cert.X509AttributeCertificateHolder>
-
clone
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
selector
public org.bouncycastle.cert.selector.X509AttributeCertificateHolderSelector selector()Returns the value of theselectorrecord component.- Returns:
- the value of the
selectorrecord component
-