Examples of processDefinition()


Examples of de.danet.an.workflow.api.Process.processDefinition()

            if (subject != null) {
                proc.setDescription(subject);
            }

            if (contextData != null) {
                ProcessDefinition procdef = proc.processDefinition();
                ProcessData procData = getProcessData(procdef, contextData);
                proc.setProcessContext(procData);
            }

            if (startImmediately) {
View Full Code Here

Examples of de.danet.an.workflow.api.Process.processDefinition()

        }

        String observer = getChildsTextContent(action, "ObserverKey");
        if (observer != null) {
            try {
                ProcessDefinition procdef = proc.processDefinition();
                ObserverRegistry obs = getObserverRegistry();
                obs.subscribe(observer, procdef.packageId(), procdef
                        .processId(), proc.key(), getResourceReference()
                        .getBaseUrl());
            } catch (SQLException e) {
View Full Code Here

Examples of de.danet.an.workflow.internalapi.ExtProcessLocal.processDefinition()

     */
    public void invoke (ExtActivityLocal act) {
  try {
      ExtProcessLocal process = (ExtProcessLocal)act.containerLocal();
      ApplicationDefinition appl = (ApplicationDefinition)
    process.processDefinition().applicationById(id());
      Map params = parameterMap (process, act, appl);
      act.invokeTool (appl, params);
      return;
  } catch (InvalidIdException e) {
      // cannot happen since procdef is initially verified
View Full Code Here

Examples of de.danet.an.workflow.localapi.ProcessLocal.processDefinition()

    public void mergeResult (ActivityLocal act, Map result)
  throws InvalidDataException {
  try {
      ProcessLocal process = (ProcessLocal)act.containerLocal();
      ApplicationDefinition appl = (ApplicationDefinition)
    process.processDefinition().applicationById(id());
      FormalParameter[] fps = appl.formalParameters();
      mergeResult (process, fps, result);
  } catch (InvalidIdException e) {
      // cannot happen since procdef is initially verified
      logger.error (e.getMessage(), e);
View Full Code Here

Examples of org.jboss.ws.tools.wsdl.WSDL11Reader.processDefinition()

      WSDL11DefinitionFactory factory = WSDL11DefinitionFactory.newInstance();
      Definition impWsdl = factory.parse(wsdlFile);

      WSDL11Reader reader = new WSDL11Reader();
      reader.processDefinition(impWsdl, wsdlFile);
   }

}
View Full Code Here

Examples of org.jboss.ws.tools.wsdl.WSDL11Reader.processDefinition()

      WSDL11DefinitionFactory factory = WSDL11DefinitionFactory.newInstance();
      Definition impWsdl = factory.parse(wsdlFile);

      WSDL11Reader reader = new WSDL11Reader();
      reader.processDefinition(impWsdl, wsdlFile);
   }

}
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.