org.jscep.message.GetCrl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jscep Show documentation
Show all versions of jscep Show documentation
Java implementation of the Simple Certificate Enrollment Protocol
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