All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hydrosphere.mist.jobs.JobSpecification.scala Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package io.hydrosphere.mist.jobs

import io.hydrosphere.mist.Specification

private[mist] trait JobSpecification extends Specification[Job]

/** Predicate for search [[Job]] in repository by its id
  *
  * @param id job id
  */
private[mist] class JobByIdSpecification(id: String) extends JobSpecification{
  override def specified(job: Job): Boolean = {
    job.id == id
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy