The Interface UserService.
| 4 | * The Interface UserService. |
| 5 | */ |
| 6 | public interface UserService { |
| 7 | |
| 8 | void save(User user); |
| 9 | |
| 10 | User find(long id); |
| 11 | |
| 12 | User findNoCurrentTransaction(long id); |
| 13 | |
| 14 | void nonTransactional(); |
| 15 | |
| 16 | void batchInsert(); |
| 17 | |
| 18 | void requiresNew(); |
| 19 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…