//Creates an id for the job
String trackingId = UUID.randomUUID().toString();
//Persist the job. This could emulate the queuing of the job for later
//execution
TrackingJobInfo info = new TrackingJobInfo(trackingId, vehicleId, vehicleType);
JSONTrackingJobsPersister.getInstance().markTrackingJobAsStarted(info);
//Return the job id
return trackingId;
}