All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.oer.its.etsi102941.EaEntry Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.

There is a newer version: 2.0.3
Show newest version
package org.bouncycastle.oer.its.etsi102941;

import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.oer.OEROptional;
import org.bouncycastle.oer.its.etsi103097.EtsiTs103097Certificate;

/**
 * EaEntry ::= SEQUENCE {
 * eaCertificate     EtsiTs103097Certificate,
 * aaAccessPoint     Url,
 * itsAccessPoint    Url OPTIONAL
 * }
 */
public class EaEntry
    extends ASN1Object
{
    private final EtsiTs103097Certificate eaCertificate;
    private final Url aaAccessPoint;
    private final Url itsAccessPoint;

    public EaEntry(EtsiTs103097Certificate eaCertificate, Url aaAccessPoint, Url itsAccessPoint)
    {
        this.eaCertificate = eaCertificate;
        this.aaAccessPoint = aaAccessPoint;
        this.itsAccessPoint = itsAccessPoint;
    }

    private EaEntry(ASN1Sequence sequence)
    {
        if (sequence.size() != 3)
        {
            throw new IllegalArgumentException("expected sequence size of 3");
        }

        eaCertificate = EtsiTs103097Certificate.getInstance(sequence.getObjectAt(0));
        aaAccessPoint = Url.getInstance(sequence.getObjectAt(1));
        itsAccessPoint = OEROptional.getValue(Url.class, sequence.getObjectAt(2));
    }

    public static EaEntry getInstance(Object o)
    {
        if (o instanceof EaEntry)
        {
            return (EaEntry)o;
        }
        if (o != null)
        {
            return new EaEntry(ASN1Sequence.getInstance(o));
        }
        return null;
    }

    public EtsiTs103097Certificate getEaCertificate()
    {
        return eaCertificate;
    }

    public Url getAaAccessPoint()
    {
        return aaAccessPoint;
    }

    public Url getItsAccessPoint()
    {
        return itsAccessPoint;
    }

    public ASN1Primitive toASN1Primitive()
    {
        return new DERSequence(new ASN1Encodable[]{
            eaCertificate, aaAccessPoint, OEROptional.getInstance(itsAccessPoint)
        });
    }

    public static Builder builder()
    {
        return new Builder();
    }

    public static class Builder
    {
        private EtsiTs103097Certificate eaCertificate;
        private Url aaAccessPoint;
        private Url itsAccessPoint;

        public Builder setEaCertificate(EtsiTs103097Certificate eaCertificate)
        {
            this.eaCertificate = eaCertificate;
            return this;
        }

        public Builder setAaAccessPoint(Url aaAccessPoint)
        {
            this.aaAccessPoint = aaAccessPoint;
            return this;
        }

        public Builder setItsAccessPoint(Url itsAccessPoint)
        {
            this.itsAccessPoint = itsAccessPoint;
            return this;
        }

        public EaEntry createEaEntry()
        {
            return new EaEntry(eaCertificate, aaAccessPoint, itsAccessPoint);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy