public String getInitiatorIdentifier() - returns the
username of the person who started the process.
Attention: This method was introduced with SDK version 1.3.
Parameters
None
Returns
Returns a String representing the username of the person who started the process.
Example
// get processes
List<Process> processes = workflowService.getProcesses();
Log.d(TAG, "Processes...");
for (Process process : processes){
Log.d(TAG, "initiatorIdentifier: "+process.getInitiatorIdentifier());
} // end for each process
Would result in output such as the following:
iniatorIdentifier: admin