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 boolean
canEqual(Object other)
boolean
equals(Object o)
org.modelmapper.ModelMapper
fromMe()
Instant
getAttemptTime()
String
getAuthServerId()
Class<?>
getBusinessDomainType()
String
getId()
String
getLoginAttemptResult()
String
getUserId()
String
getUsername()
The username used in the login attempt.int
hashCode()
boolean
isConsidered()
void
setAttemptTime(Instant attemptTime)
void
setAuthServerId(String authServerId)
void
setConsidered(boolean considered)
void
setId(String id)
void
setLoginAttemptResult(String loginAttemptResult)
void
setUserId(String userId)
void
setUsername(String username)
The username used in the login attempt.org.modelmapper.ModelMapper
toMe()
String
toString()
-
-
-
Method Detail
-
getBusinessDomainType
public Class<?> getBusinessDomainType()
- Specified by:
getBusinessDomainType
in interfacecom.broadleafcommerce.data.tracking.core.mapping.BusinessTypeAware
-
fromMe
public org.modelmapper.ModelMapper fromMe()
- Specified by:
fromMe
in interfacecom.broadleafcommerce.data.tracking.core.mapping.ModelMapperMappable
-
toMe
public org.modelmapper.ModelMapper toMe()
- Specified by:
toMe
in 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)
-
-