
com.capitalone.dashboard.repository.UserInfoRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.repository;
import com.capitalone.dashboard.model.AuthType;
import com.capitalone.dashboard.model.UserInfo;
import com.capitalone.dashboard.model.UserRole;
import java.util.Collection;
public interface UserInfoRepository extends QueryRepository{
UserInfo findByUsernameAndAuthType(String username, AuthType authType);
Collection findByAuthoritiesIn(UserRole roleAdmin);
Iterable findByOrderByUsernameAsc();
UserInfo findByUsername(String userName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy