You are here

getDescription

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

Parameters

None

Returns

Returns a String representing the description 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, "description: "+process.getDescription());
  
  } // end for each process

      

Would result in output such as the following:


description: someDescription