| | |
| | | */ |
| | | |
| | | @Override |
| | | public UserModel authenticate(String username, char[] password) { |
| | | return authenticationManager.authenticate(username, password); |
| | | public UserModel authenticate(String username, char[] password, String remoteIP) { |
| | | return authenticationManager.authenticate(username, password, remoteIP); |
| | | } |
| | | |
| | | @Override |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<FilestoreModel> getAllObjects() { |
| | | return filestoreManager.getAllObjects(); |
| | | public List<FilestoreModel> getAllObjects(UserModel user) { |
| | | return filestoreManager.getAllObjects(user); |
| | | } |
| | | |
| | | @Override |