⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crldata.java

📁 一套JAVA的CA证书签发系统.
💻 JAVA
字号:
/************************************************************************* *                                                                       * *  EJBCA: The OpenSource Certificate Authority                          * *                                                                       * *  This software is free software; you can redistribute it and/or       * *  modify it under the terms of the GNU Lesser General Public           * *  License as published by the Free Software Foundation; either         * *  version 2.1 of the License, or any later version.                    * *                                                                       * *  See terms of license at gnu.org.                                     * *                                                                       * *************************************************************************/ package se.anatom.ejbca.ca.store;import java.rmi.RemoteException;import java.security.cert.X509CRL;import java.util.Date;/** * For docs, see CRLDataBean */public interface CRLData extends javax.ejb.EJBObject {    // public methods    public int getCRLNumber() throws RemoteException;    /**     * DOCUMENT ME!     *     * @param cRLNumber DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setCRLNumber(int cRLNumber) throws RemoteException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public String getIssuerDN() throws RemoteException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public String getFingerprint() throws RemoteException;    /**     * DOCUMENT ME!     *     * @param fingerprint DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setFingerprint(String fingerprint) throws RemoteException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public String getCAFingerprint() throws RemoteException;    /**     * DOCUMENT ME!     *     * @param cAFingerprint DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setCAFingerprint(String cAFingerprint)        throws RemoteException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public long getThisUpdate() throws RemoteException;    /**     * DOCUMENT ME!     *     * @param thisUpdate DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setThisUpdate(long thisUpdate) throws RemoteException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public long getNextUpdate() throws RemoteException;    /**     * DOCUMENT ME!     *     * @param nextUpdate DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setNextUpdate(long nextUpdate) throws RemoteException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public String getBase64Crl() throws RemoteException;    /**     * DOCUMENT ME!     *     * @param base64Crl DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setBase64Crl(String base64Crl) throws RemoteException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public X509CRL getCRL() throws RemoteException;    /**     * DOCUMENT ME!     *     * @param crl DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setCRL(X509CRL crl) throws RemoteException;    /**     * DOCUMENT ME!     *     * @param dn DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setIssuer(String dn) throws RemoteException;    /**     * DOCUMENT ME!     *     * @param thisUpdate DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setThisUpdate(Date thisUpdate) throws RemoteException;    /**     * DOCUMENT ME!     *     * @param nextUpdate DOCUMENT ME!     *     * @throws RemoteException DOCUMENT ME!     */    public void setNextUpdate(Date nextUpdate) throws RemoteException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -