org.bouncycastle.asn1.ocsp.ServiceLocator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk15on Show documentation
Show all versions of bcprov-ext-debug-jdk15on 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.5 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
package org.bouncycastle.asn1.ocsp;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.x500.X500Name;
import org.bouncycastle.asn1.x509.AuthorityInformationAccess;
public class ServiceLocator
extends ASN1Object
{
private final X500Name issuer;
private final AuthorityInformationAccess locator;
private ServiceLocator(ASN1Sequence sequence)
{
this.issuer = X500Name.getInstance(sequence.getObjectAt(0));
if (sequence.size() == 2)
{
this.locator = AuthorityInformationAccess.getInstance(sequence.getObjectAt(1));
}
else
{
this.locator = null;
}
}
public static ServiceLocator getInstance(
Object obj)
{
if (obj instanceof ServiceLocator)
{
return (ServiceLocator)obj;
}
else if (obj != null)
{
return new ServiceLocator(ASN1Sequence.getInstance(obj));
}
return null;
}
public X500Name getIssuer()
{
return issuer;
}
public AuthorityInformationAccess getLocator()
{
return locator;
}
/**
* Produce an object suitable for an ASN1OutputStream.
*
* ServiceLocator ::= SEQUENCE {
* issuer Name,
* locator AuthorityInfoAccessSyntax OPTIONAL }
*
*/
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
v.add(issuer);
if (locator != null)
{
v.add(locator);
}
return new DERSequence(v);
}
}