📄 usermanager.java
字号:
package com.cib.service;import java.util.List;import org.springframework.security.userdetails.UsernameNotFoundException;import com.cib.dao.UserDao;import com.cib.model.User;/** * Business Service Interface to handle communication between web and * persistence layer. * * @author <a href="mailto:matt@raibledesigns.com">Matt Raible</a> * Modified by <a href="mailto:dan@getrolling.com">Dan Kibler </a> */public interface UserManager extends UniversalManager { /** * Convenience method for testing - allows you to mock the DAO and set it on an interface. * @param userDao the UserDao implementation to use */ void setUserDao(UserDao userDao); /** * Retrieves a user by userId. An exception is thrown if user not found * * @param userId the identifier for the user * @return User */ User getUser(String userId); /** * Finds a user by their username. * @param username the user's username used to login * @return User a populated user object * @throws org.springframework.security.userdetails.UsernameNotFoundException * exception thrown when user not found */ User getUserByUsername(String username) throws UsernameNotFoundException; /** * Retrieves a list of users, filtering with parameters on a user object * @param user parameters to filter on * @return List */ List getUsers(User user); /** * Saves a user's information. * * @param user the user's information * @throws UserExistsException thrown when user already exists * @return user the updated user object */ User saveUser(User user) throws UserExistsException; /** * Removes a user from the database by their userId * * @param userId the user's id */ void removeUser(String userId);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -