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

io.gatling.recorder.internal.bouncycastle.asn1.cmp.PKIStatus Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.asn1.cmp;

import java.math.BigInteger;

import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Integer;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Object;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Primitive;

/**
 * PKIStatus ::= INTEGER {
 *          accepted                (0),
 *          -- you got exactly what you asked for
 *          grantedWithMods        (1),
 *          -- you got something like what you asked for; the
 *          -- requester is responsible for ascertaining the differences
 *          rejection              (2),
 *          -- you don't get it, more information elsewhere in the message
 *          waiting                (3),
 *          -- the request body part has not yet been processed; expect to
 *          -- hear more later (note: proper handling of this status
 *          -- response MAY use the polling req/rep PKIMessages specified
 *          -- in Section 5.3.22; alternatively, polling in the underlying
 *          -- transport layer MAY have some utility in this regard)
 *          revocationWarning      (4),
 *          -- this message contains a warning that a revocation is
 *          -- imminent
 *          revocationNotification (5),
 *          -- notification that a revocation has occurred
 *          keyUpdateWarning       (6)
 *          -- update already done for the oldCertId specified in
 *          -- CertReqMsg
 *      }
 */
public class PKIStatus
    extends ASN1Object
{
    public static final int GRANTED = 0;
    public static final int GRANTED_WITH_MODS = 1;
    public static final int REJECTION = 2;
    public static final int WAITING = 3;
    public static final int REVOCATION_WARNING = 4;
    public static final int REVOCATION_NOTIFICATION = 5;
    public static final int KEY_UPDATE_WARNING = 6;

    public static final PKIStatus granted = new PKIStatus(GRANTED);
    public static final PKIStatus grantedWithMods = new PKIStatus(GRANTED_WITH_MODS);
    public static final PKIStatus rejection = new PKIStatus(REJECTION);
    public static final PKIStatus waiting = new PKIStatus(WAITING);
    public static final PKIStatus revocationWarning = new PKIStatus(REVOCATION_WARNING);
    public static final PKIStatus revocationNotification = new PKIStatus(REVOCATION_NOTIFICATION);
    public static final PKIStatus keyUpdateWaiting = new PKIStatus(KEY_UPDATE_WARNING);

    private final ASN1Integer value;

    private PKIStatus(int value)
    {
        this(new ASN1Integer(value));
    }

    private PKIStatus(ASN1Integer value)
    {
        this.value = value;
    }

    public static PKIStatus getInstance(Object o)
    {
        if (o instanceof PKIStatus)
        {
            return (PKIStatus)o;
        }

        if (o != null)
        {
            return new PKIStatus(ASN1Integer.getInstance(o));
        }

        return null;
    }

    public BigInteger getValue()
    {
        return value.getValue();
    }

    public ASN1Primitive toASN1Primitive()
    {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy