Package org.bouncycastle.asn1.crmf
Class PKIPublicationInfo
java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.crmf.PKIPublicationInfo
- All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable,org.bouncycastle.util.Encodable
public class PKIPublicationInfo
extends org.bouncycastle.asn1.ASN1Object
PKIPublicationInfo ::= SEQUENCE {
action INTEGER {
dontPublish (0),
pleasePublish (1) },
pubInfos SEQUENCE SIZE (1..MAX) OF SinglePubInfo OPTIONAL }
-- pubInfos MUST NOT be present if action is "dontPublish"
-- (if action is "pleasePublish" and pubInfos is omitted,
-- "dontCare" is assumed)
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.bouncycastle.asn1.ASN1Integerstatic final org.bouncycastle.asn1.ASN1Integer -
Constructor Summary
ConstructorsConstructorDescriptionPKIPublicationInfo(BigInteger action) PKIPublicationInfo(org.bouncycastle.asn1.ASN1Integer action) PKIPublicationInfo(SinglePubInfo pubInfo) Constructor with a single pubInfo, assumes pleasePublish as the action.PKIPublicationInfo(SinglePubInfo[] pubInfos) Constructor with multiple pubInfo, assumes pleasePublish as the action. -
Method Summary
Modifier and TypeMethodDescriptionorg.bouncycastle.asn1.ASN1Integerstatic PKIPublicationInfoorg.bouncycastle.asn1.ASN1PrimitiveReturn the primitive representation of PKIPublicationInfo.Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
Field Details
-
dontPublish
public static final org.bouncycastle.asn1.ASN1Integer dontPublish -
pleasePublish
public static final org.bouncycastle.asn1.ASN1Integer pleasePublish
-
-
Constructor Details
-
PKIPublicationInfo
-
PKIPublicationInfo
public PKIPublicationInfo(org.bouncycastle.asn1.ASN1Integer action) -
PKIPublicationInfo
Constructor with a single pubInfo, assumes pleasePublish as the action.- Parameters:
pubInfo- the pubInfo to be published (can be null if don't care is required).
-
PKIPublicationInfo
Constructor with multiple pubInfo, assumes pleasePublish as the action.- Parameters:
pubInfos- the pubInfos to be published (can be null if don't care is required).
-
-
Method Details
-
getInstance
-
getAction
public org.bouncycastle.asn1.ASN1Integer getAction() -
getPubInfos
-
toASN1Primitive
public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()Return the primitive representation of PKIPublicationInfo.- Specified by:
toASN1Primitivein interfaceorg.bouncycastle.asn1.ASN1Encodable- Specified by:
toASN1Primitivein classorg.bouncycastle.asn1.ASN1Object- Returns:
- a basic ASN.1 object representation.
-