Examples of addLog()


Examples of org.exoplatform.services.jcr.dataflow.TransactionChangesLog.addLog()

               versionLogs.addLog(new PlainChangesLogImpl(vstates, changes.getSessionId(), changes.getEventType()));
            }
         }
         else if (nvstates.size() > 0)
         {
            nonVersionLogs.addLog(new PlainChangesLogImpl(nvstates, changes.getSessionId(), changes.getEventType()));
         }
      }

      if (versionLogs.getSize() > 0)
      {
View Full Code Here

Examples of org.exoplatform.services.jcr.dataflow.TransactionChangesLog.addLog()

            saveVersions = true;
         }

         if (nvstates.size() > 0)
         {
            nonVersionLog.addLog((pairId != null) ? new PairChangesLog(nvstates, changes.getSessionId(), changes
               .getEventType(), pairId) : new PlainChangesLogImpl(nvstates, changes.getSessionId(), changes
               .getEventType()));

            saveNonVersions = true;
         }
View Full Code Here

Examples of org.jbpm.graph.exe.Token.addLog()

      }

      // log this creation
      // WARNING: The events create and assign are fired in the right order, but
      // the logs are still not ordered properly.
      token.addLog(new TaskCreateLog(taskInstance, taskInstance.getActorId()));

    }
    else
    {
      taskInstance.create();
View Full Code Here

Examples of org.jbpm.graph.exe.Token.addLog()

    // remove the subprocess reference
    superProcessToken.setSubProcessInstance(null);

    // We replaced the normal log generation of super.leave() by creating the log here
    // and overriding the addNodeLog method with an empty version
    superProcessToken.addLog(new ProcessStateLog(this, superProcessToken.getNodeEnter(), Clock.getCurrentTime(), subProcessInstance));

    // call the subProcessEndAction
    super.leave(executionContext, getDefaultLeavingTransition());
  }
View Full Code Here

Examples of org.jbpm.logging.exe.LoggingInstance.addLog()

  {
    LoggingInstance li = processInstance.getLoggingInstance();
    if (li != null)
    {
      processLog.setToken(this);
      li.addLog(processLog);
    }
  }

  /**
   * convenience method for starting a composite log. When you add composite logs, make sure you put the
View Full Code Here

Examples of org.netbeans.server.uihandler.LogsManager.VersionData.addLog()

            }
            Nbversion version = pVersion.getNbversionId();
            VersionData versionData = LogsManager.getDefault().getVersionStatistics(version);
            if (versionData != null){
                info.addValues(versionData.getData());
                versionData.addLog();
            }
        }
    }

    private static <Data> void finishUploadOpen(SessionInfo info, Value<Data> v, boolean initialParse) {
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.