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

org.jscep.message.GetCrl Maven / Gradle / Ivy

There is a newer version: 2.5.6
Show newest version
package org.jscep.message;

import org.bouncycastle.asn1.cms.IssuerAndSerialNumber;
import org.jscep.transaction.MessageType;
import org.jscep.transaction.Nonce;
import org.jscep.transaction.TransactionId;

/**
 * This class represents a GetCRL pkiMessage, which wraps an
 * IssuerAndSerialNumber object.
 */
public class GetCrl extends PkiRequest {
    /**
     * Creates a new GetCrl instance.
     * 
     * @param transId
     *            the transaction ID for this request.
     * @param senderNonce
     *            the nonce for this request.
     * @param messageData
     *            the IssuerAndSerialNumber of the certificate
     *            referenced by the CRL.
     */
    public GetCrl(final TransactionId transId, final Nonce senderNonce,
            final IssuerAndSerialNumber messageData) {
        super(transId, MessageType.GET_CRL, senderNonce, messageData);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy