public void onGenericEvent( final GenericEvent event )
{
final JSONValue json = JSONParser.parseStrict( event.getValue() );
final JSONObject object = json.isObject();
final String jobId = object.get( GenericEvent.JOB_ID ).isString().stringValue();
final Status status = Status.valueOf( object.get( GenericEvent.STATUS ).isString().stringValue() );
if( jobId.equals( currentJobId ) )
{
if( status == GenericEvent.Status.ERROR )
{