Package org.ejbca.core.model.ca

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


                            m_log.debug("Response type supported: " + oid.getId());
                            continue;
                        }
                    }
                    if (!supportsResponseType) {
                        throw new NotSupportedException("Required response type not supported, this responder only supports id-pkix-ocsp-basic.");
                    }
                } catch (IOException e) {
                }
            }
        }
View Full Code Here


                    }
                }
            } else {
                // We should never get here
                log.error("Directly renewing a CA signed by external can not be done");
                throw new NotSupportedException("Directly renewing a CA signed by external can not be done");
            }
            // Set statuses and expire time
            cadata.setExpireTime(CertTools.getNotAfter(cacertificate).getTime());
            ca.setExpireTime(CertTools.getNotAfter(cacertificate));
            cadata.setStatus(SecConst.CA_ACTIVE);
View Full Code Here

TOP

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

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.