org.bouncycastle.asn1.esf.CrlListID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.asn1.esf;
import java.util.Enumeration;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
/**
*
* CRLListID ::= SEQUENCE {
* crls SEQUENCE OF CrlValidatedID }
*
*/
public class CrlListID
extends ASN1Object
{
private ASN1Sequence crls;
public static CrlListID getInstance(Object obj)
{
if (obj instanceof CrlListID)
{
return (CrlListID)obj;
}
else if (obj != null)
{
return new CrlListID(ASN1Sequence.getInstance(obj));
}
return null;
}
private CrlListID(ASN1Sequence seq)
{
this.crls = (ASN1Sequence)seq.getObjectAt(0);
Enumeration e = this.crls.getObjects();
while (e.hasMoreElements())
{
CrlValidatedID.getInstance(e.nextElement());
}
}
public CrlListID(CrlValidatedID[] crls)
{
this.crls = new DERSequence(crls);
}
public CrlValidatedID[] getCrls()
{
CrlValidatedID[] result = new CrlValidatedID[this.crls.size()];
for (int idx = 0; idx < result.length; idx++)
{
result[idx] = CrlValidatedID
.getInstance(this.crls.getObjectAt(idx));
}
return result;
}
public ASN1Primitive toASN1Primitive()
{
return new DERSequence(this.crls);
}
}