/**@class android.app.job.JobServiceEngine
@extends java.lang.Object

 Helper for implementing a {@link android.app.Service} that interacts with
 {@link android.app.job.JobScheduler}.  This is not intended for use by regular applications, but
 allows frameworks built on top of the platform to create their own
 {@link android.app.Service} that interact with {@link android.app.job.JobScheduler} as well as
 add in additional functionality.  If you just want to execute jobs normally, you
 should instead be looking at {@link android.app.job.JobService}.
*/
var JobServiceEngine = {

/**Retrieve the engine's IPC interface that should be returned by
 {@link Service#onBind(Intent)}.
*/
getBinder : function(  ) {},

/**Engine's report that a job has started.  See
 {@link android.app.job.JobService#onStartJob(JobParameters) android.app.job.JobService.onStartJob} for more information.
*/
onStartJob : function(  ) {},

/**Engine's report that a job has stopped.  See
 {@link android.app.job.JobService#onStopJob(JobParameters) android.app.job.JobService.onStopJob} for more information.
*/
onStopJob : function(  ) {},

/**Call in to engine to report that a job has finished executing.  See
 {@link android.app.job.JobService#jobFinished(JobParameters, boolean)}  android.app.job.JobService.jobFinished} for more
 information.
*/
jobFinished : function(  ) {},


};