インタフェース LastActionRepository

すべてのスーパーインタフェース:
org.springframework.data.repository.CrudRepository<LastAction,​String>, org.springframework.data.mongodb.repository.MongoRepository<LastAction,​String>, org.springframework.data.repository.PagingAndSortingRepository<LastAction,​String>, org.springframework.data.repository.query.QueryByExampleExecutor<LastAction>, org.springframework.data.repository.Repository<LastAction,​String>

@Repository
public interface LastActionRepository
extends org.springframework.data.mongodb.repository.MongoRepository<LastAction,​String>
The interface that manages last action repository.
導入されたバージョン:
1.0.0
  • メソッドの概要

    修飾子とタイプ メソッド 説明
    LastAction findByTaskTypeCode​(int taskTypeCode)
    Returns the last action based on the task type code passed as an argument.

    インタフェースから継承されたメソッド org.springframework.data.repository.CrudRepository

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

    インタフェースから継承されたメソッド org.springframework.data.mongodb.repository.MongoRepository

    findAll, findAll, findAll, findAll, insert, insert, saveAll

    インタフェースから継承されたメソッド org.springframework.data.repository.PagingAndSortingRepository

    findAll

    インタフェースから継承されたメソッド org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findOne
  • メソッドの詳細

    • findByTaskTypeCode

      LastAction findByTaskTypeCode​(int taskTypeCode)
      Returns the last action based on the task type code passed as an argument.
      パラメータ:
      taskTypeCode - The task type code
      戻り値:
      The last action linked to the task type code passed as an argument.