|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use User | |
|---|---|
| org.synyx.hades.sample.dao | Package showing a DAO interface to use basic finder method execution functionality as well as customly implemented DAO functionality. |
| org.synyx.hades.sample.dao.impl | Implementations of the custom functionality declared in UserDaoCustom. |
| org.synyx.hades.sample.dao.simple | Package showing a simple DAO interface to use basic finder method execution functionality. |
| Uses of User in org.synyx.hades.sample.dao |
|---|
| Methods in org.synyx.hades.sample.dao that return User | |
|---|---|
User |
UserDao.findByTheUsersName(java.lang.String username)
Find the user with the given username. |
| Methods in org.synyx.hades.sample.dao that return types with arguments of type User | |
|---|---|
java.util.List<User> |
UserDao.findByFirstname(java.lang.String firstname)
Returns all users with the given firstname. |
java.util.List<User> |
UserDao.findByLastname(java.lang.String lastname)
Find all users with the given lastname. |
java.util.List<User> |
UserDaoCustom.myCustomBatchOperation()
Custom DAO operation. |
| Uses of User in org.synyx.hades.sample.dao.impl |
|---|
| Methods in org.synyx.hades.sample.dao.impl that return types with arguments of type User | |
|---|---|
java.util.List<User> |
UserDaoJdbcImpl.myCustomBatchOperation()
|
java.util.List<User> |
UserDaoImpl.myCustomBatchOperation()
|
| Uses of User in org.synyx.hades.sample.dao.simple |
|---|
| Methods in org.synyx.hades.sample.dao.simple that return User | |
|---|---|
User |
SimpleUserDao.findByTheUsersName(java.lang.String username)
Find the user with the given username. |
| Methods in org.synyx.hades.sample.dao.simple that return types with arguments of type User | |
|---|---|
java.util.List<User> |
SimpleUserDao.findByFirstname(java.lang.String firstname)
Returns all users with the given firstname. |
java.util.List<User> |
SimpleUserDao.findByFirstnameOrLastname(java.lang.String name)
Returns all users with the given name as first- or lastname. |
java.util.List<User> |
SimpleUserDao.findByLastname(java.lang.String lastname)
Find all users with the given lastname. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||