/** * @param serverURL Bonita server host URL * <p>Examples: http://localhost:8080 or http://localhost or https://localhost:8081 * * @param activityInstanceId * @param apiAccessor APIAccessor used to get details of task * @return URL to access to a human task form in APP mode * @throws ProcessDefinitionNotFoundException * @throws ActivityInstanceNotFoundException */ @Deprecated public static String getHumanTaskURL( String serverURL, long activityInstanceId, APIAccessor apiAccessor) throws ActivityInstanceNotFoundException, ProcessDefinitionNotFoundException { return getHumanTaskURL( serverURL, activityInstanceId, FormMode.app, apiAccessor.getProcessAPI()); }
/** * @param serverURL Bonita server host URL * <p>Examples: http://localhost:8080 or http://localhost or https://localhost:8081 * * @param processDefinitionId * @param apiAccessor APIAccessor used to get details of process * @return URL to access to a process initialization form in APP mode * @throws ProcessDefinitionNotFoundException */ @Deprecated public static String getStartProcessCaseURL( String serverURL, long processDefinitionId, APIAccessor apiAccessor) throws ProcessDefinitionNotFoundException { return getStartProcessCaseURL( serverURL, processDefinitionId, FormMode.app, apiAccessor.getProcessAPI()); }