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

io.edurt.datacap.service.repository.PipelineRepository Maven / Gradle / Ivy

package io.edurt.datacap.service.repository;

import io.edurt.datacap.executor.common.RunState;
import io.edurt.datacap.service.entity.PipelineEntity;
import io.edurt.datacap.service.entity.UserEntity;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;

import java.util.List;

public interface PipelineRepository
        extends BaseRepository
{
    Page findAllByUser(UserEntity user, Pageable pageable);

    List findAllByStateIn(List state);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy