Modifier and Type | Method and Description |
---|---|
UserAuthenticationEntity |
UserAuthenticationDAO.findByPK(Long pk) |
UserAuthenticationEntity |
UserAuthenticationDAO.merge(UserAuthenticationEntity entity) |
Modifier and Type | Method and Description |
---|---|
List<UserAuthenticationEntity> |
UserAuthenticationDAO.findAll() |
List<UserAuthenticationEntity> |
UserAuthenticationDAO.findByType(UserAuthenticationType authenticationType) |
List<UserAuthenticationEntity> |
UserAuthenticationDAO.findByTypeAndKey(UserAuthenticationType authenticationType,
String key) |
List<UserAuthenticationEntity> |
UserAuthenticationDAO.findByUser(UserEntity userEntity) |
Modifier and Type | Method and Description |
---|---|
void |
UserAuthenticationDAO.create(UserAuthenticationEntity entity) |
UserAuthenticationEntity |
UserAuthenticationDAO.merge(UserAuthenticationEntity entity) |
void |
UserAuthenticationDAO.remove(UserAuthenticationEntity entity) |
Modifier and Type | Method and Description |
---|---|
void |
UserAuthenticationDAO.create(Set<UserAuthenticationEntity> entities) |
void |
UserAuthenticationDAO.merge(Set<UserAuthenticationEntity> entities) |
void |
UserAuthenticationDAO.remove(Set<UserAuthenticationEntity> entities) |
Modifier and Type | Method and Description |
---|---|
List<UserAuthenticationEntity> |
UserEntity.getAuthenticationEntities() |
Modifier and Type | Method and Description |
---|---|
void |
UserEntity.setAuthenticationEntities(List<UserAuthenticationEntity> authenticationEntities) |
Modifier and Type | Method and Description |
---|---|
protected UserAuthenticationEntity |
AmbariAuthenticationProvider.getAuthenticationEntity(UserEntity userEntity,
UserAuthenticationType type)
Finds the specific
UserAuthenticationEntity from the collection of authentication methods
available to the specified UserEntity . |
Modifier and Type | Method and Description |
---|---|
protected Collection<UserAuthenticationEntity> |
AmbariAuthenticationProvider.getAuthenticationEntities(UserAuthenticationType type,
String key)
Finds the specific set of
UserAuthenticationEntity instances from the collection of
authentication methods available to the specified UserEntity . |
protected Collection<UserAuthenticationEntity> |
AmbariAuthenticationProvider.getAuthenticationEntities(UserEntity userEntity,
UserAuthenticationType type)
Finds the specific set of
UserAuthenticationEntity instances from the collection of
authentication methods available to the specified UserEntity . |
Modifier and Type | Method and Description |
---|---|
Collection<UserAuthenticationEntity> |
Users.getUserAuthenticationEntities(String username,
UserAuthenticationType authenticationType)
Gets the collection of
UserAuthenticationEntity s for a given user. |
Collection<UserAuthenticationEntity> |
Users.getUserAuthenticationEntities(UserAuthenticationType authenticationType,
String key)
Find the
UserAuthenticationEntity items for a specific UserAuthenticationType
and key value. |
Collection<UserAuthenticationEntity> |
Users.getUserAuthenticationEntities(UserEntity userEntity,
UserAuthenticationType authenticationType)
Gets the collection of
UserAuthenticationEntity s for a given user. |
Modifier and Type | Method and Description |
---|---|
void |
Users.modifyAuthentication(UserAuthenticationEntity userAuthenticationEntity,
String currentKey,
String newKey,
boolean isSelf)
Modifies authentication key of an authentication source for a user
|
Copyright © 2022 Apache Software Foundation. All rights reserved.