Package org.bouncycastle.cert.crmf
Interface Control
-
- All Known Implementing Classes:
AuthenticatorControl
,PKIArchiveControl
,RegTokenControl
public interface Control
Generic interface for a CertificateRequestMessage control value.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.bouncycastle.asn1.ASN1ObjectIdentifier
getType()
Return the type of this control.org.bouncycastle.asn1.ASN1Encodable
getValue()
Return the value contained in this control object.
-
-
-
Method Detail
-
getType
org.bouncycastle.asn1.ASN1ObjectIdentifier getType()
Return the type of this control.- Returns:
- an ASN1ObjectIdentifier representing the type.
-
getValue
org.bouncycastle.asn1.ASN1Encodable getValue()
Return the value contained in this control object.- Returns:
- the value of the control.
-
-