...
- Java syntax supported by the version of JDK used
- Usage of the following libraries:
- Libraries available in JDK
- org.joget.workflow.model.*
- org.joget.workflow.util.*
- JavaBeans Activation Framework 1.1
- Commons Email 1.1
- JavaMail 1.4
- MySQL JDBC Driver 3.1.14
- Oracle JDBC Driver 10.2.0.2
- Microsoft SQL Server JDBC Driver 1.0
- Usage of Hash Variables
Example
Set value to a workflow variable:
...
Get all users from the DirectoryManager and assigning them:
??
Code Block |
---|
import java.util.Collection; import java.util.ArrayList; import org.joget.apps.app.service.AppUtil; import org.joget.directory.model.service.ExtDirectoryManager; import org.joget.directory.model.User; import org.springframework.context.ApplicationContext; ApplicationContext ac = AppUtil.getApplicationContext(); ExtDirectoryManager directoryManager = (ExtDirectoryManager) ac.getBean("directoryManager"); Collection results = new ArrayList(); Collection userList = directoryManager.getUserList(); for (User u : userList) { results.add(u.getUsername()); } return results; |
...