📄 userservice.java
字号:
package com.cib.service;
import com.cib.model.User;
import org.springframework.security.userdetails.UsernameNotFoundException;
import javax.jws.WebService;
import java.util.List;
/**
* Web Service interface so hierarchy of Universal and Generic Managers isn't carried through.
*/
@WebService
public interface UserService {
/**
* 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<User> getUsers(User user);
/**
* Saves a user's information
*
* @param user the user's information
* @throws UserExistsException thrown when user already exists
* @return updated user
*/
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 + -