Package org.ejbca.core.ejb.ca.caadmin

Examples of org.ejbca.core.ejb.ca.caadmin.CertificateProfileData.upgradeProfile()


        final Collection<CertificateProfileData> result = CertificateProfileData.findAll(entityManager);
        final Iterator<CertificateProfileData> iter = result.iterator();
        while(iter.hasNext()) {
                final CertificateProfileData pdata = iter.next();
                final String name = pdata.getCertificateProfileName();
                pdata.upgradeProfile();
                final float version = pdata.getCertificateProfile().getVersion();
                if (LOG.isDebugEnabled()) {
                    LOG.debug("Loaded certificate profile: "+name+" with version "+version);                 
                }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.