public void handleSuccessfulResponse(final Controller controller, final Object event, Response response)
{
final long start = System.currentTimeMillis();
final ProcessDefinitionRef def = (ProcessDefinitionRef)event;
List<ProcessInstanceRef> instances = JSOParser.parseProcessInstances(response.getText());
InstanceListView view = (InstanceListView) controller.getView(InstanceListView.ID);
if(view!=null) view.update(def, instances);
ConsoleLog.info("Loaded " + instances.size() + " process instance(s) in "+(System.currentTimeMillis()-start)+" ms");