mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
20 lines
252 B
Java
20 lines
252 B
Java
package org.example;
|
|
|
|
/**
|
|
* The Interface UserService.
|
|
*/
|
|
public interface UserService {
|
|
|
|
void save(User user);
|
|
|
|
User find(long id);
|
|
|
|
User findNoCurrentTransaction(long id);
|
|
|
|
void nonTransactional();
|
|
|
|
void batchInsert();
|
|
|
|
void requiresNew();
|
|
}
|