Package org.ejbca.core.model.ca

Examples of org.ejbca.core.model.ca.CAOfflineException


        if ((getStatus() != SecConst.CA_ACTIVE) && ((getStatus() != SecConst.CA_EXPIRED))) {
          String msg = intres.getLocalizedMessage("error.caoffline", getName(), getStatus());
            if (log.isDebugEnabled()) {
              log.debug(msg); // This is something we handle so no need to log with higher priority
            }
          throw new CAOfflineException(msg);
        }

        final String sigAlg;
        if(certProfile.getSignatureAlgorithm() == null) {
            sigAlg = getCAInfo().getCATokenInfo().getSignatureAlgorithm();
View Full Code Here

TOP

Related Classes of org.ejbca.core.model.ca.CAOfflineException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.