com.example.hello.dao
Interface UserManager

All Known Implementing Classes:
JpaUserManager

public interface UserManager

Interface definition for the User data access object (DAO).


Method Summary
 void create(User user)
           
 User find(String name)
           
 User findIfExists(String username)
           
 

Method Detail

find

User find(String name)
          throws ResourceNotFoundException
Throws:
ResourceNotFoundException

findIfExists

User findIfExists(String username)

create

void create(User user)