Beispiel #1
0
 /**
  * @url GET /:prjUid/activity/:actUid/assignee/:aasUid
  *
  * @param string $prjUid {@min 32} {@max 32}
  * @param string $actUid {@min 32} {@max 32}
  * @param string $aasUid {@min 32} {@max 32}
  *
  */
 public function doGetActivityAssignee($prjUid, $actUid, $aasUid)
 {
     $response = array();
     try {
         $task = new \ProcessMaker\BusinessModel\Task();
         $objectData = $task->getTaskAssignee($prjUid, $actUid, $aasUid);
         //Response
         $response = $objectData;
     } catch (\Exception $e) {
         //Response
         throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage());
     }
     return $response;
 }