org.bouncycastle.asn1.cmc.BodyPartList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk14 Show documentation
Show all versions of bcprov-ext-debug-jdk14 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.4. Note: this package includes the NTRU encryption algorithms.
package org.bouncycastle.asn1.cmc;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1TaggedObject;
import org.bouncycastle.asn1.DERSequence;
/**
*
* BodyPartList ::= SEQUENCE SIZE (1..MAX) OF BodyPartID
*
*/
public class BodyPartList
extends ASN1Object
{
private final BodyPartID[] bodyPartIDs;
public static BodyPartList getInstance(
Object obj)
{
if (obj instanceof BodyPartList)
{
return (BodyPartList)obj;
}
if (obj != null)
{
return new BodyPartList(ASN1Sequence.getInstance(obj));
}
return null;
}
public static BodyPartList getInstance(
ASN1TaggedObject obj,
boolean explicit)
{
return getInstance(ASN1Sequence.getInstance(obj, explicit));
}
/**
* Construct a BodyPartList object containing one BodyPartID.
*
* @param bodyPartID the BodyPartID to be contained.
*/
public BodyPartList(
BodyPartID bodyPartID)
{
this.bodyPartIDs = new BodyPartID[] { bodyPartID };
}
public BodyPartList(
BodyPartID[] bodyPartIDs)
{
this.bodyPartIDs = Utils.clone(bodyPartIDs);
}
private BodyPartList(
ASN1Sequence seq)
{
this.bodyPartIDs = Utils.toBodyPartIDArray(seq);
}
public BodyPartID[] getBodyPartIDs()
{
return Utils.clone(bodyPartIDs);
}
public ASN1Primitive toASN1Primitive()
{
return new DERSequence(bodyPartIDs);
}
}