|
|
|
@ -4,6 +4,9 @@ import kr.re.etri.autoflow.entity.KubeflowRunEntity;
|
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
|
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Optional;
|
|
|
|
|
|
|
|
|
|
|
|
public interface KubeflowRunRepository extends JpaRepository<KubeflowRunEntity, String>, JpaSpecificationExecutor<KubeflowRunEntity> {
|
|
|
|
public interface KubeflowRunRepository extends JpaRepository<KubeflowRunEntity, String>, JpaSpecificationExecutor<KubeflowRunEntity> {
|
|
|
|
boolean existsByRunId(String runId);
|
|
|
|
boolean existsByRunId(String runId);
|
|
|
|
|
|
|
|
Optional<KubeflowRunEntity> findByRunId(String runId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|