org.bouncycastle.asn1.crmf.Controls 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.crmf;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
public class Controls
extends ASN1Object
{
private ASN1Sequence content;
private Controls(ASN1Sequence seq)
{
content = seq;
}
public static Controls getInstance(Object o)
{
if (o instanceof Controls)
{
return (Controls)o;
}
if (o != null)
{
return new Controls(ASN1Sequence.getInstance(o));
}
return null;
}
public Controls(AttributeTypeAndValue atv)
{
content = new DERSequence(atv);
}
public Controls(AttributeTypeAndValue[] atvs)
{
content = new DERSequence(atvs);
}
public AttributeTypeAndValue[] toAttributeTypeAndValueArray()
{
AttributeTypeAndValue[] result = new AttributeTypeAndValue[content.size()];
for (int i = 0; i != result.length; i++)
{
result[i] = AttributeTypeAndValue.getInstance(content.getObjectAt(i));
}
return result;
}
/**
*
* Controls ::= SEQUENCE SIZE(1..MAX) OF AttributeTypeAndValue
*
*
* @return a basic ASN.1 object representation.
*/
public ASN1Primitive toASN1Primitive()
{
return content;
}
}