Examples of CAData


Examples of org.ejbca.core.ejb.ca.caadmin.CAData

  }

  public void testCAData() {
    LOG.trace(">testCAData");
    logMemStats();
    CAData entity = new CAData();
    entity.setCaId(BOGUS_INTEGER);
    entity.setData(CLOB_100KiB);
    entity.setExpireTime(0);
    entity.setName(VARCHAR_250B);
    entity.setRowProtection(CLOB_10KiB);
    entity.setRowVersion(0);
    entity.setStatus(0);
    entity.setSubjectDN(VARCHAR_250B);
    entity.setUpdateTime(0);
    storeAndRemoveEntity(entity);
    LOG.trace("<testCAData");
  }
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.