
net.smartcosmos.userdetails.service.AuthenticateUserService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartcosmos-user-details Show documentation
Show all versions of smartcosmos-user-details Show documentation
REST Controller for hooking into the DAO implementations
The newest version!
package net.smartcosmos.userdetails.service;
import org.springframework.http.ResponseEntity;
import net.smartcosmos.userdetails.domain.rest.AuthenticateRequest;
/**
* Interface for User Authentication Service implementations.
*/
public interface AuthenticateUserService {
/**
* Gets the User Details for a user authentication request.
*
* @param request the user authentication request
* @return the response entity
*/
ResponseEntity> authenticateUser(AuthenticateRequest request);
ResponseEntity> isUserActive(String username);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy