Interface ActionRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<Action,Long>, org.springframework.data.jpa.repository.JpaRepository<Action,Long>, org.springframework.data.repository.ListCrudRepository<Action,Long>, org.springframework.data.repository.ListPagingAndSortingRepository<Action,Long>, org.springframework.data.repository.PagingAndSortingRepository<Action,Long>, org.springframework.data.repository.query.QueryByExampleExecutor<Action>, org.springframework.data.repository.Repository<Action,Long>

@Repository public interface ActionRepository extends org.springframework.data.jpa.repository.JpaRepository<Action,Long>
Data-access layer for Action entities.
Version:
1.0.2
Author:
Stephen Prizio
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns an Action for the given action id.

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findActionByActionId

      Action findActionByActionId(String actionId)
      Returns an Action for the given action id.
      Parameters:
      actionId - action id
      Returns:
      Action