Uses of Class
org.openiam.idm.srvc.auth.domain.LoginEntity
-
-
Uses of LoginEntity in org.openiam.elasticsearch.converter
Methods in org.openiam.elasticsearch.converter that return LoginEntity Modifier and Type Method Description LoginEntity
LoginDocumentToEntityConverter. convertToEntity(LoginDoc doc)
protected LoginEntity
LoginDocumentToEntityConverter. newEntity()
Methods in org.openiam.elasticsearch.converter that return types with arguments of type LoginEntity Modifier and Type Method Description Class<LoginEntity>
LoginDocumentToEntityConverter. getEntityClass()
Methods in org.openiam.elasticsearch.converter with parameters of type LoginEntity Modifier and Type Method Description LoginDoc
LoginDocumentToEntityConverter. convertToDocument(LoginEntity entity)
-
Uses of LoginEntity in org.openiam.esb.core.auth.module
Methods in org.openiam.esb.core.auth.module that return LoginEntity Modifier and Type Method Description protected LoginEntity
AbstractLoginModule. getLogin(AuthenticationContext context)
protected LoginEntity
AbstractSocialLoginModule. getLogin(AuthenticationContext context)
Methods in org.openiam.esb.core.auth.module with parameters of type LoginEntity Modifier and Type Method Description protected void
AbstractLoginModule. checkSecondaryStatus(UserEntity user, LoginEntity loginEntity, Policy authnPolicy)
protected abstract Subject
AbstractLoginModule. doLogin(AuthenticationContext context, LoginEntity login)
protected Subject
AbstractSocialLoginModule. doLogin(AuthenticationContext context, LoginEntity login)
protected Subject
DefaultLoginModule. doLogin(AuthenticationContext context, LoginEntity login)
protected Subject
ManagedSystemLoginModule. doLogin(AuthenticationContext context, LoginEntity login)
protected void
AbstractLoginModule. doUserStatusCheck(AuthenticationContext context, LoginEntity login, Policy authnPolicy)
String
AbstractOTPModule. generateRFC4226Token(LoginEntity login)
protected Date
AbstractLoginModule. getGracePeriodDate(LoginEntity lg, Date curDate, Policy policy)
protected abstract String
AbstractOTPModule. getText(String sendTo, LoginEntity login, String token)
protected UserEntity
AbstractLoginModule. getUser(AuthenticationContext context, LoginEntity login)
protected UserEntity
AbstractSocialLoginModule. getUser(AuthenticationContext context, LoginEntity login)
protected ResponseCode
AbstractLoginModule. passwordExpired(LoginEntity lg, Date curDate, Policy policy)
If the password has expired, but its before the grace period then its a good login If the password has expired and after the grace period, then its an exception.String
AbstractOTPModule. send(String sendTo, LoginEntity login)
protected abstract void
AbstractOTPModule. send(String sendTo, LoginEntity login, String text)
protected Integer
AbstractLoginModule. setDaysToPasswordExpiration(LoginEntity lg, Date curDate, Policy pwdPolicy)
protected void
AbstractLoginModule. setResultCode(LoginEntity lg, Subject sub, Date curDate, Policy pwdPolicy, boolean skipPasswordCheck)
protected abstract void
AbstractOTPModule. validate(String sendTo, LoginEntity login)
protected void
AbstractLoginModule. validateUserLogin(UserEntity user, LoginEntity login)
-
Uses of LoginEntity in org.openiam.esb.core.auth.module.impl
Methods in org.openiam.esb.core.auth.module.impl with parameters of type LoginEntity Modifier and Type Method Description protected String
EmailOTPModule. getText(String sendTo, LoginEntity login, String token)
protected String
SMSGlobalSMSOTPModule. getText(String phone, LoginEntity login, String token)
protected String
TwilioSMSOTPModule. getText(String phone, LoginEntity login, String token)
protected String
TwilioVoiceOTPModule. getText(String phone, LoginEntity login, String token)
protected void
EmailOTPModule. send(String sendTo, LoginEntity login, String text)
protected void
SMSGlobalSMSOTPModule. send(String phone, LoginEntity login, String text)
protected void
TwilioSMSOTPModule. send(String phone, LoginEntity login, String text)
protected void
TwilioVoiceOTPModule. send(String phone, LoginEntity login, @Null String text)
protected void
EmailOTPModule. validate(String sendTo, LoginEntity login)
protected void
SMSGlobalSMSOTPModule. validate(String phone, LoginEntity login)
protected void
TwilioSMSOTPModule. validate(String phone, LoginEntity login)
protected void
TwilioVoiceOTPModule. validate(String phone, LoginEntity login)
-
Uses of LoginEntity in org.openiam.esb.core.dozer.converter
Methods in org.openiam.esb.core.dozer.converter that return LoginEntity Modifier and Type Method Description LoginEntity
LoginDozerConverter. convertEntity(LoginEntity userEntity, boolean isDeep)
LoginEntity
LoginDozerConverter. convertToEntity(Login entity, boolean isDeep)
Methods in org.openiam.esb.core.dozer.converter that return types with arguments of type LoginEntity Modifier and Type Method Description List<LoginEntity>
LoginDozerConverter. convertToEntityList(List<Login> list, boolean isDeep)
Set<LoginEntity>
LoginDozerConverter. convertToEntitySet(Set<Login> set, boolean isDeep)
Methods in org.openiam.esb.core.dozer.converter with parameters of type LoginEntity Modifier and Type Method Description LoginEntity
LoginDozerConverter. convertEntity(LoginEntity userEntity, boolean isDeep)
Login
LoginDozerConverter. convertToDTO(LoginEntity userEntity, boolean isDeep)
Method parameters in org.openiam.esb.core.dozer.converter with type arguments of type LoginEntity Modifier and Type Method Description List<Login>
LoginDozerConverter. convertToDTOList(List<LoginEntity> list, boolean isDeep)
Set<Login>
LoginDozerConverter. convertToDTOSet(Set<LoginEntity> set, boolean isDeep)
-
Uses of LoginEntity in org.openiam.esb.core.pswd.rule
Fields in org.openiam.esb.core.pswd.rule declared as LoginEntity Modifier and Type Field Description protected LoginEntity
AbstractPasswordRule. lg
Methods in org.openiam.esb.core.pswd.rule with parameters of type LoginEntity Modifier and Type Method Description List<PasswordRuleException>
PasswordValidatorImpl. getAllViolatingRules(Policy pswdPolicy, Password password, LoginEntity login)
List<PasswordRule>
PasswordValidatorImpl. getPasswordRules(Policy pswdPolicy, Password password, LoginEntity login)
List<AbstractPasswordRule>
PasswordValidatorImpl. getRules(Policy pswdPolicy, Password password, LoginEntity login)
-
Uses of LoginEntity in org.openiam.esb.core.pswd.rule.validation
Methods in org.openiam.esb.core.pswd.rule.validation with parameters of type LoginEntity Modifier and Type Method Description List<PasswordRuleException>
PasswordValidator. getAllViolatingRules(Policy pswdPolicy, Password password, LoginEntity login)
List<PasswordRule>
PasswordValidator. getPasswordRules(Policy policy, Password password, LoginEntity lg)
List<AbstractPasswordRule>
PasswordValidator. getRules(Policy pswdPolicy, Password password, LoginEntity login)
-
Uses of LoginEntity in org.openiam.esb.core.pswd.service
Methods in org.openiam.esb.core.pswd.service with parameters of type LoginEntity Modifier and Type Method Description PasswordValidationResponse
PasswordService. isPasswordValidForUser(Password pswd, LoginEntity lg)
Determines if the password conforms to the policy associated with this user.PasswordValidationResponse
PasswordService. isPasswordValidForUserAndPolicy(Password pswd, LoginEntity lg, Policy policy)
Returns if the password conforms to selected password policy -
Uses of LoginEntity in org.openiam.esb.core.pswd.service.impl
Methods in org.openiam.esb.core.pswd.service.impl with parameters of type LoginEntity Modifier and Type Method Description PasswordValidationResponse
PasswordServiceImpl. isPasswordValidForUser(Password pswd, LoginEntity lg)
PasswordValidationResponse
PasswordServiceImpl. isPasswordValidForUserAndPolicy(Password pswd, LoginEntity lg, Policy policy)
-
Uses of LoginEntity in org.openiam.esb.core.service
Methods in org.openiam.esb.core.service that return LoginEntity Modifier and Type Method Description LoginEntity
LoginDataService. getByUserIdManagedSys(String userId, String managedSysId)
Returns the identity for this user and managedSysIdLoginEntity
LoginDataService. getLoginByManagedSys(String principal, String sysId)
LoginEntity
LoginDataService. getPasswordResetToken(String token)
LoginEntity
LoginDataService. getPrimaryIdentity(String userId)
Returns the primary identity for this userMethods in org.openiam.esb.core.service that return types with arguments of type LoginEntity Modifier and Type Method Description List<LoginEntity>
LoginDataService. getLoginByUser(String userId)
List<LoginEntity>
LoginDataService. usersWithPasswordExpYesterday()
List of users whose passworss are expiring today -
Uses of LoginEntity in org.openiam.esb.core.service.impl
Methods in org.openiam.esb.core.service.impl that return LoginEntity Modifier and Type Method Description LoginEntity
LoginDataServiceImpl. getByUserIdManagedSys(String userId, String managedSysId)
LoginEntity
LoginDataServiceImpl. getLoginByManagedSys(String login, String sysId)
LoginEntity
LoginDataServiceImpl. getPasswordResetToken(String token)
LoginEntity
LoginDataServiceImpl. getPrimaryIdentity(String userId)
Methods in org.openiam.esb.core.service.impl that return types with arguments of type LoginEntity Modifier and Type Method Description List<LoginEntity>
LoginDataServiceImpl. getLoginByUser(String userId)
List<LoginEntity>
LoginDataServiceImpl. usersWithPasswordExpYesterday()
Methods in org.openiam.esb.core.service.impl with parameters of type LoginEntity Modifier and Type Method Description protected void
AuthenticationServiceImpl. otpCodesAreNotEqualsException(LoginEntity loginEntity, Integer maxFailAttempts)
boolean
LoginDataServiceImpl. savePasswordHistory(String password, LoginEntity lg)
Saving current password for login to PWD_HISTORY table -
Uses of LoginEntity in org.openiam.esb.repository
Methods in org.openiam.esb.repository that return LoginEntity Modifier and Type Method Description LoginEntity
LoginRepository. findFirstByLowerCaseLoginAndManagedSysId(String login, String managedSysId)
replace public LoginEntity getRecord(final String login, final String managedSysId) from DAOLoginEntity
LoginRepository. findFirstByPswdResetToken(String token)
replace public LoginEntity findByPasswordResetToken(String token) from DAOdefault LoginEntity
LoginRepository. getRecord(String login, String managedSysId)
Deprecated.Methods in org.openiam.esb.repository that return types with arguments of type LoginEntity Modifier and Type Method Description List<LoginEntity>
LoginRepository. findByUserId(String userId)
replace public ListfindUser(String userId) from DAO List<LoginEntity>
LoginRepository. findByUserIdInAndManagedSysId(List<String> userIds, String defaultManagedSysId)
replace public ListfindByUserIds(List userIds, String managedSysId) from DAO List<LoginEntity>
LoginRepository. findLockedUsers(Date startTime)
-
Uses of LoginEntity in org.openiam.esb.repository.custom
Methods in org.openiam.esb.repository.custom that return types with arguments of type LoginEntity Modifier and Type Method Description List<LoginEntity>
LoginRepositoryCustom. findInactiveUsers(int startDays, int endDays, String managedSysId)
List<LoginEntity>
LoginRepositoryCustom. findUserNearPswdExp(int daysToExpiration)
List<LoginEntity>
LoginRepositoryCustom. findUserPswdExpYesterday()
-
Uses of LoginEntity in org.openiam.esb.repository.impl
Methods in org.openiam.esb.repository.impl that return types with arguments of type LoginEntity Modifier and Type Method Description protected org.springframework.data.jpa.domain.Specification<LoginEntity>
LoginRepositoryImpl. buildSpecifications(LoginSearchBean sb)
List<LoginEntity>
LoginRepositoryImpl. findInactiveUsers(int startDays, int endDays, String managedSysId)
List<LoginEntity>
LoginRepositoryImpl. findUserNearPswdExp(int daysToExpiration)
List<LoginEntity>
LoginRepositoryImpl. findUserPswdExpYesterday()
protected Class<LoginEntity>
LoginRepositoryImpl. getEntityClass()
protected AbstractKeyEntityRepository<LoginEntity,String>
LoginRepositoryImpl. getRepository()
-
Uses of LoginEntity in org.openiam.idm.srvc.user.domain
Methods in org.openiam.idm.srvc.user.domain that return LoginEntity Modifier and Type Method Description LoginEntity
UserEntity. getLoginByManagedSystemId(String managedSystemId)
LoginEntity
UserEntity. getLoginByPrincipal(String login)
Methods in org.openiam.idm.srvc.user.domain with parameters of type LoginEntity Modifier and Type Method Description void
UserEntity. addLogin(LoginEntity loginEntity)
-
Uses of LoginEntity in org.openiam.util
Methods in org.openiam.util that return LoginEntity Modifier and Type Method Description static LoginEntity
UserUtils. getUserManagedSysIdentityEntity(String managedSysId, List<LoginEntity> principalList)
Method parameters in org.openiam.util with type arguments of type LoginEntity Modifier and Type Method Description static LoginEntity
UserUtils. getUserManagedSysIdentityEntity(String managedSysId, List<LoginEntity> principalList)
-