You are here

getName

public String getName() - returns the name of the process.
Attention: This method was introduced with SDK version 1.3.

Parameters

None

Returns

Returns a String representing the name of the process. May return null if this value is not set.

Example


  // get processes
  List<Process> processes = workflowService.getProcesses();
  
  Log.d(TAG, "Processes...");
  for (Process process : processes){
    
    Log.d(TAG, "name: "+process.getName());
  
  } // end for each process

      

Would result in output such as the following:


name: someName