Class JpaUserLoginAttempt
- java.lang.Object
-
- com.broadleafcommerce.auth.user.provider.jpa.domain.JpaUserLoginAttempt
-
- All Implemented Interfaces:
com.broadleafcommerce.data.tracking.core.mapping.BusinessTypeAware,com.broadleafcommerce.data.tracking.core.mapping.ModelMapperMappable,Serializable
@Entity public class JpaUserLoginAttempt extends Object implements Serializable, com.broadleafcommerce.data.tracking.core.mapping.ModelMapperMappable, com.broadleafcommerce.data.tracking.core.mapping.BusinessTypeAware
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JpaUserLoginAttempt()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)org.modelmapper.ModelMapperfromMe()InstantgetAttemptTime()StringgetAuthServerId()Class<?>getBusinessDomainType()StringgetId()StringgetLoginAttemptResult()StringgetUserId()StringgetUsername()The username used in the login attempt.inthashCode()booleanisConsidered()voidsetAttemptTime(Instant attemptTime)voidsetAuthServerId(String authServerId)voidsetConsidered(boolean considered)voidsetId(String id)voidsetLoginAttemptResult(String loginAttemptResult)voidsetUserId(String userId)voidsetUsername(String username)The username used in the login attempt.org.modelmapper.ModelMappertoMe()StringtoString()
-
-
-
Method Detail
-
getBusinessDomainType
public Class<?> getBusinessDomainType()
- Specified by:
getBusinessDomainTypein interfacecom.broadleafcommerce.data.tracking.core.mapping.BusinessTypeAware
-
fromMe
public org.modelmapper.ModelMapper fromMe()
- Specified by:
fromMein interfacecom.broadleafcommerce.data.tracking.core.mapping.ModelMapperMappable
-
toMe
public org.modelmapper.ModelMapper toMe()
- Specified by:
toMein interfacecom.broadleafcommerce.data.tracking.core.mapping.ModelMapperMappable
-
getId
public String getId()
-
getUsername
public String getUsername()
The username used in the login attempt. Required.
-
getUserId
public String getUserId()
-
getAuthServerId
public String getAuthServerId()
-
getLoginAttemptResult
public String getLoginAttemptResult()
-
isConsidered
public boolean isConsidered()
-
getAttemptTime
public Instant getAttemptTime()
-
setId
public void setId(String id)
-
setUsername
public void setUsername(String username)
The username used in the login attempt. Required.
-
setUserId
public void setUserId(String userId)
-
setAuthServerId
public void setAuthServerId(String authServerId)
-
setLoginAttemptResult
public void setLoginAttemptResult(String loginAttemptResult)
-
setConsidered
public void setConsidered(boolean considered)
-
setAttemptTime
public void setAttemptTime(Instant attemptTime)
-
canEqual
protected boolean canEqual(Object other)
-
-