Open Kilda Java Documentation
StatusRepository.java
Go to the documentation of this file.
1 package org.usermanagement.dao.repository;
2 
3 import org.springframework.data.jpa.repository.JpaRepository;
4 import org.springframework.stereotype.Repository;
5 import org.springframework.transaction.annotation.Propagation;
6 import org.springframework.transaction.annotation.Transactional;
7 
9 
10 
11 
15 @Repository
16 @Transactional(propagation = Propagation.MANDATORY)
17 public interface StatusRepository extends JpaRepository<StatusEntity, Integer> {
18 
19 
20 }