Package org.ejbca.core.model.ra.raadmin

Examples of org.ejbca.core.model.ra.raadmin.EndEntityProfile.clone()


        } else {
        // We need to clone the profile, otherwise the cache contents will be modifyable from the outside
          final EndEntityProfile eep = profileCache.getProfileCache(entityManager).get(Integer.valueOf(id));
        try {
          if (eep != null) {
            returnval = (EndEntityProfile)eep.clone();
          }
        } catch (CloneNotSupportedException e) {
          LOG.error("Should never happen: ", e);
          throw new RuntimeException(e);
        }
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.