Package de.danet.an.workflow.domain

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


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

  ApplicationDefinition appl
      = (ApplicationDefinition)pd.applicationById("WebForm");
  assertTrue (appl != null);
  assertTrue (appl.description(), appl.description().equals
        ("Bearbeitung einer Aktivit�t �ber ein Web-Formular      "));
  appl = (ApplicationDefinition)pd.applicationById("WebFormPlus");
  assertTrue (appl != null);
  FormalParameter[] fps = appl.formalParameters();
  assertTrue (fps.length == 2);
  Participant p = pd.participantById("currentUser");
  assertTrue (p != null);
  assertTrue (p.getName().equals("Current User"));
  assertTrue (p.getParticipantType() == ParticipantType.HUMAN);
View Full Code Here

TOP

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

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.