Interface UserProfileDAO
-
- All Known Subinterfaces:
MongoDBUserProfileDAO
public interface UserProfileDAO
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(String id)voiddeleteAll()List<UserProfile>findAll()UserProfilefindByAaiId(String aaiId)UserProfilefindById(String Id)UserProfilesave(UserProfile user)
-
-
-
Method Detail
-
findAll
List<UserProfile> findAll()
-
findById
UserProfile findById(String Id)
-
findByAaiId
UserProfile findByAaiId(String aaiId)
-
save
UserProfile save(UserProfile user)
-
deleteAll
void deleteAll()
-
delete
void delete(String id)
-
-