Package org.ejbca.core.ejb.services

Examples of org.ejbca.core.ejb.services.ServiceData


  }

  public void testServiceData() {
    LOG.trace(">testServiceData");
    logMemStats();
    ServiceData entity = new ServiceData();
    entity.setData(CLOB_100KiB);
    entity.setId(BOGUS_INTEGER);
    entity.setName(VARCHAR_250B);
    entity.setNextRunTimeStamp(0L);
    entity.setRowProtection(CLOB_10KiB);
    entity.setRowVersion(0);
    entity.setRunTimeStamp(0L);
    storeAndRemoveEntity(entity);
    LOG.trace("<testServiceData");
  }
View Full Code Here

TOP

Related Classes of org.ejbca.core.ejb.services.ServiceData

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.