Examples of EntDbOrmtab


Examples of com.ufis_as.ufisapp.server.oldflightdata.entities.EntDbOrmtab

   
    try {
      HpUfisCalendar ufisCal = new HpUfisCalendar(new Date());
      ufisCal.DateAdd(HpUfisAppConstants.OFFSET_LOCAL_UTC, EnumTimeInterval.Hours);

      EntDbOrmtab entDbOrmtab = new EntDbOrmtab();
      // composite pkey
      entDbOrmtab.setId(new EntDbOrmCompositeId(ormNextUrno, dtfl));
      entDbOrmtab.setData(outgoingMessage);
      entDbOrmtab.setCdat(ufisCal.getTime());
      entDbOrmtab.setQnam(dest);
      em.persist(entDbOrmtab);
      LOG.info("Outgoing message has been inserted into ORMTAB.");
      // cache the maximum urno
      ormNextUrno += 1;
    } catch (Exception 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.