📄 icreatecrlsessionlocal.java
字号:
/* * Generated by XDoclet - Do not edit! */package org.ejbca.core.ejb.ca.crl;/** * Local interface for CreateCRLSession. */public interface ICreateCRLSessionLocal extends javax.ejb.EJBLocalObject{ /** * Generates a new CRL by looking in the database for revoked certificates and generating a CRL. * @param admin administrator performing the task * @param issuerdn of the ca (normalized for EJBCA) * @throws EJBException om ett kommunikations eller systemfel intr?ffar. */ public void run( org.ejbca.core.model.log.Admin admin,java.lang.String issuerdn ) throws org.ejbca.core.model.ca.catoken.CATokenOfflineException; /** * Method that checks if there are any CRLs needed to be updated and then creates their CRLs. No overlap is used. This method can be called by a scheduler or a service. * @param admin administrator performing the task * @return the number of crls created. * @throws EJBException om ett kommunikations eller systemfel intr?ffar. */ public int createCRLs( org.ejbca.core.model.log.Admin admin ) ; /** * Method that checks if there are any CRLs needed to be updated and then creates their CRLs. A CRL is created: 1. if the current CRL expires within the crloverlaptime (milliseconds) 2. if a crl issue interval is defined (>0) a CRL is issued when this interval has passed, even if the current CRL is still valid This method can be called by a scheduler or a service. * @param admin administrator performing the task * @param addtocrloverlaptime given in milliseconds and added to the CRL overlap time, if set to how often this method is run (poll time), it can be used to issue a new CRL if the current one expires within the CRL overlap time (configured in CA) and the poll time. The used CRL overlap time will be (crloverlaptime + addtocrloverlaptime) * @return the number of crls created. * @throws EJBException om ett kommunikations eller systemfel intr?ffar. */ public int createCRLs( org.ejbca.core.model.log.Admin admin,long addtocrloverlaptime ) ;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -