Package de.danet.an.workflow.domain

Examples of de.danet.an.workflow.domain.DefaultAuditEvent


     * Returns an <code>WfAuditEvent</code> containing container-related
     * information.
     * @return the audit event
     */
    protected WfAuditEvent containerAuditEventBase () {
  return new DefaultAuditEvent
      (null, null, processPk.toString(), processName,
       processMgr, processMgrVers, getPaAuditEventSelection(),
       getPaStoreAuditEvents());
    }
View Full Code Here


        WfAuditEvent eventBase = null;
  Timestamp ts = rs.getTimestamp(2);
  Date evtTime = new Date (ts.getTime() + ts.getNanos() / 1000000000);
  if (execObj instanceof WfProcess){
      eventBase
    = new DefaultAuditEvent
    ((WfProcess)execObj, eventType, evtTime,
     rs.getString(6), rs.getString(7), rs.getString(8),
     rs.getString(9),
     ProcessDefinition.AUDIT_SELECTION_ALL_EVENTS, false);
  } else {
      eventBase
    = new DefaultAuditEvent
    ((WfActivity)execObj, eventType, evtTime,
     rs.getString(4), rs.getString(5), rs.getString(6),
     rs.getString(7), rs.getString(8), rs.getString(9),
     ProcessDefinition.AUDIT_SELECTION_ALL_EVENTS, false);
  }
View Full Code Here

TOP

Related Classes of de.danet.an.workflow.domain.DefaultAuditEvent

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.