*
* @param kind
* @param id
*/
public void executeJobFromWeb(ExecuteKind kind, String id) throws Exception {
WebResponse resp = new WorkerWebExecute().send(context, kind, id).get();
if (resp.getStatus() == Status.ERROR) {
throw new Exception(resp.getErrorText());
}
}