br.com.jhonsapp.bootstrap.object.repository.query.UserQueries Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootstrap-object Show documentation
Show all versions of bootstrap-object Show documentation
A complete architecture for creating and managing users.
The newest version!
package br.com.jhonsapp.bootstrap.object.repository.query;
import java.util.List;
import java.util.Optional;
import br.com.jhonsapp.bootstrap.object.model.user.User;
public interface UserQueries {
public Optional findByUserNameAndActive(String userName);
public List findPermissions(T user);
}