Package com.embabel.agent.spi
Interface AgentProcessRepository
-
- All Implemented Interfaces:
public interface AgentProcessRepositorySpring-style repository for agent processes. We don't extend Repository because it confuses Spring's component scanning if JPA/Neo or another Spring Data solution is used on the classpath downstream.
-
-
Method Summary
Modifier and Type Method Description abstract AgentProcessfindById(String id)abstract AgentProcesssave(AgentProcess agentProcess)abstract Unitdelete(AgentProcess agentProcess)-
-
Method Detail
-
findById
abstract AgentProcess findById(String id)
-
save
abstract AgentProcess save(AgentProcess agentProcess)
-
delete
abstract Unit delete(AgentProcess agentProcess)
-
-
-
-