/************************************************************************* * * * CESeCore: CE Security Core * * * * 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 org.cesecore.certificates.certificate; import javax.ejb.Remote; /** * This session bean should under no circumstances be included in the release version of CESeCore. * It allows removal of CRLs, and may be used only for functional tests to clean up after * themselves. * * @version $Id: InternalCrlStoreSessionRemote.java 30504 2018-11-14 14:46:08Z mikekushner $ */ @Remote public interface InternalCrlStoreSessionRemote { /** * Removes all CRLs from the given issuer * * @param issuerDN */ void removeCrl(final String issuerDN); }