Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
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; |
...