Examples of resultSignature()


Examples of de.danet.an.workflow.api.ProcessDefinition.resultSignature()

        (pd.contextSignature()
         .get ("packageXMLDefined")) instanceof SAXEventBuffer);
  assertTrue (pd.contextSignature()
        .get ("processString") == String.class);

  assertTrue (pd.resultSignature() .get ("formalParam1") == null);
  assertTrue (pd.resultSignature()
        .get ("formalParam2") == String.class);
  assertTrue (pd.resultSignature()
        .get ("formalParam3") == String.class);
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessDefinition.resultSignature()

         .get ("packageXMLDefined")) instanceof SAXEventBuffer);
  assertTrue (pd.contextSignature()
        .get ("processString") == String.class);

  assertTrue (pd.resultSignature() .get ("formalParam1") == null);
  assertTrue (pd.resultSignature()
        .get ("formalParam2") == String.class);
  assertTrue (pd.resultSignature()
        .get ("formalParam3") == String.class);

  ApplicationDefinition appl
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessDefinition.resultSignature()

        .get ("processString") == String.class);

  assertTrue (pd.resultSignature() .get ("formalParam1") == null);
  assertTrue (pd.resultSignature()
        .get ("formalParam2") == String.class);
  assertTrue (pd.resultSignature()
        .get ("formalParam3") == String.class);

  ApplicationDefinition appl
      = (ApplicationDefinition)pd.applicationById("WebForm");
  assertTrue (appl != null);
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessDefinition.resultSignature()

  ProcessDefinition pd
      = pdd.lookupProcessDefinition("ut-procdef", "called1");
  assertTrue (pd != null);
  assertTrue (pd.processHeader().created().equals ("07.04.2003"));
  assertTrue (pd.processHeader().description().equals ("Was tun"));
  ProcessDataInfo pdi = pd.resultSignature();
  assertTrue (pdi.keySet().size () == 1);
  assertTrue (pdi.containsKey("status"));
  assertTrue (pdi.get("status") == String.class);
    }
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessDefinition.resultSignature()

        throws RemoteException, SOAPException, ResultNotAvailableException {
        SOAPElement resultData
            = propsNode.addChildElement("ResultData", Consts.ASAP_PREFIX);
       
        ProcessDefinition procdef = proc.processDefinition();
        ProcessDataInfo resultSignature = procdef.resultSignature();

        resultData.addNamespaceDeclaration
            (Consts.RS_PREFIX, getResourceReference().getNamespace());
       
        ProcessData result;
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessMgr.resultSignature()

       .isAssignableFrom(Long.class));
  assertTrue(((Class)ctxInfo.get("packageStringData"))
       .isAssignableFrom(String.class));

  // Test result signature (all OUT or INOUT parameters)
  Iterator res = mgr.resultSignature().values().iterator();
  ProcessDataInfo resInfo = mgr.resultSignature();
  assertTrue(((Class)resInfo.get("PARAM-InOut-String"))
       .isAssignableFrom(String.class));
  assertTrue(((Class)resInfo.get("PARAM-Out-Integer"))
       .isAssignableFrom(Long.class));
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessMgr.resultSignature()

  assertTrue(((Class)ctxInfo.get("packageStringData"))
       .isAssignableFrom(String.class));

  // Test result signature (all OUT or INOUT parameters)
  Iterator res = mgr.resultSignature().values().iterator();
  ProcessDataInfo resInfo = mgr.resultSignature();
  assertTrue(((Class)resInfo.get("PARAM-InOut-String"))
       .isAssignableFrom(String.class));
  assertTrue(((Class)resInfo.get("PARAM-Out-Integer"))
       .isAssignableFrom(Long.class));
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessMgr.resultSignature()

  assertTrue(((Class)resInfo.get("PARAM-Out-Integer"))
       .isAssignableFrom(Long.class));

  mgr = defDir.processMgr("SystemTest_minimal", "minimal");
  assertTrue(mgr.contextSignature().isEmpty());
  assertTrue(mgr.resultSignature().isEmpty());
    }

    /**
     * Test initial values of process data.
     * @exception Exception if an error occurs
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessMgr.resultSignature()

       .isAssignableFrom(String.class));
  //wait to shutdown the processing instance
  Util.sleep(30000);

  // Test result signature (all OUT or INOUT parameters)
  Iterator res = mgr.resultSignature().values().iterator();
  ProcessDataInfo resInfo = mgr.resultSignature();
  assertTrue(((Class)resInfo.get("PARAM-InOut-String"))
       .isAssignableFrom(String.class));
  assertTrue(((Class)resInfo.get("PARAM-Out-Integer"))
       .isAssignableFrom(Long.class));
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessMgr.resultSignature()

  //wait to shutdown the processing instance
  Util.sleep(30000);

  // Test result signature (all OUT or INOUT parameters)
  Iterator res = mgr.resultSignature().values().iterator();
  ProcessDataInfo resInfo = mgr.resultSignature();
  assertTrue(((Class)resInfo.get("PARAM-InOut-String"))
       .isAssignableFrom(String.class));
  assertTrue(((Class)resInfo.get("PARAM-Out-Integer"))
       .isAssignableFrom(Long.class));
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.