Package de.danet.an.workflow.api

Examples of de.danet.an.workflow.api.ActivityUniqueKey


                    String procKey = rs.getString(pos++);
                    String procMgr = rs.getString(pos++);
                    String resourceKey = rs.getString(pos++);
                    Date asndAt = rs.getTimestamp (pos++);
                    Object state = JDBCUtil.getBinary(rs, pos++);
                    ActivityUniqueKey auk
                        = new ActivityUniqueKey(procMgr, procKey, actKey);
                    res.add(new SimpleApplicationInfo
                            (instId, auk, asndAt, resourceKey, state));
                }
                return res;
            } finally {
View Full Code Here


                    String procKey = rs.getString(pos++);
                    String procMgr = rs.getString(pos++);
                    String resKey = rs.getString (pos++);
                    Date asndAt = rs.getTimestamp (pos++);
                    Object state = JDBCUtil.getBinary(rs, pos++);
                    ActivityUniqueKey auk
                        = new ActivityUniqueKey(procMgr, procKey, actKey);
                    res.add(new SimpleApplicationInfo
                            (instId, auk, asndAt, resKey, state));
                }
                return res;
            } finally {
View Full Code Here

                    String actKey = rs.getString(pos++);
                    String procKey = rs.getString(pos++);
                    String procMgr = rs.getString(pos++);
                    Date asndAt = rs.getTimestamp (pos++);
                    Object state = JDBCUtil.getBinary(rs, pos++);
                    ActivityUniqueKey auk
                        = new ActivityUniqueKey(procMgr, procKey, actKey);
                    res.add(new SimpleApplicationInfo
                            (instId, auk, asndAt, resourceKey, state));
                }
                return res;
            } finally {
View Full Code Here

     * @throws RemoteException if a temporary problem occurs and the
     * workflow engine should retry the tool invocation
     */
    public void terminate (Activity activity)
  throws ApplicationNotStoppedException, RemoteException {
  ActivityUniqueKey auk = null;
  try {
      auk = activity.uniqueKey();
      SimpleApplicationInfo info
    = applicationDirectory().infoByActivity (auk);
      applicationDirectory().removeInstance (info.id());
View Full Code Here

            logger.debug("finding activity definition'" + packageId + "/"
                    + processId + "/" + processKey + "/" + activityKey
                    + "'...");
        }
       
        ActivityUniqueKey uniqueKey = new ActivityUniqueKey(packageId + "/"
                + processId, processKey, activityKey);
       
        ProcessDirectory pd = getWorkflowService().processDirectory();
       
        return pd.lookupActivity(uniqueKey);
View Full Code Here

  // except key() and uniqueKey() before WSIF dynamic
  // invocation. Else, the activity becomes part of the EJB
  // transaction and is locked, i.e. all accesses (even display
  // in the management client) are deferred until the invocation
  // has completed. The time this takes is not controllable.
  ActivityUniqueKey auk = null;
  try {
      if (wsdlDef == null) {
    throw new IllegalStateException("WSDL definition not defined");
      }
      Operation calledOp = operation;
View Full Code Here

TOP

Related Classes of de.danet.an.workflow.api.ActivityUniqueKey

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.