Interface MapOTPPolicyEntity
-
- All Superinterfaces:
UpdatableEntity
- All Known Implementing Classes:
HotRodOTPPolicyEntityDelegate
,MapOTPPolicyEntityDelegate
,MapOTPPolicyEntityFieldDelegate
,MapOTPPolicyEntityImpl
,MapOTPPolicyEntityImpl.Empty
public interface MapOTPPolicyEntity extends UpdatableEntity
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static MapOTPPolicyEntity
fromModel(OTPPolicy model)
String
getOtpPolicyAlgorithm()
Integer
getOtpPolicyDigits()
Integer
getOtpPolicyInitialCounter()
Integer
getOtpPolicyLookAheadWindow()
Integer
getOtpPolicyPeriod()
String
getOtpPolicyType()
Boolean
isOtpPolicyCodeReusable()
void
setOtpPolicyAlgorithm(String otpPolicyAlgorithm)
void
setOtpPolicyCodeReusable(Boolean isOtpPolicyCodeReusable)
void
setOtpPolicyDigits(Integer otpPolicyDigits)
void
setOtpPolicyInitialCounter(Integer otpPolicyInitialCounter)
void
setOtpPolicyLookAheadWindow(Integer otpPolicyLookAheadWindow)
void
setOtpPolicyPeriod(Integer otpPolicyPeriod)
void
setOtpPolicyType(String otpPolicyType)
static OTPPolicy
toModel(MapOTPPolicyEntity entity)
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Method Detail
-
fromModel
static MapOTPPolicyEntity fromModel(OTPPolicy model)
-
toModel
static OTPPolicy toModel(MapOTPPolicyEntity entity)
-
getOtpPolicyInitialCounter
Integer getOtpPolicyInitialCounter()
-
setOtpPolicyInitialCounter
void setOtpPolicyInitialCounter(Integer otpPolicyInitialCounter)
-
getOtpPolicyDigits
Integer getOtpPolicyDigits()
-
setOtpPolicyDigits
void setOtpPolicyDigits(Integer otpPolicyDigits)
-
getOtpPolicyLookAheadWindow
Integer getOtpPolicyLookAheadWindow()
-
setOtpPolicyLookAheadWindow
void setOtpPolicyLookAheadWindow(Integer otpPolicyLookAheadWindow)
-
getOtpPolicyPeriod
Integer getOtpPolicyPeriod()
-
setOtpPolicyPeriod
void setOtpPolicyPeriod(Integer otpPolicyPeriod)
-
getOtpPolicyType
String getOtpPolicyType()
-
setOtpPolicyType
void setOtpPolicyType(String otpPolicyType)
-
getOtpPolicyAlgorithm
String getOtpPolicyAlgorithm()
-
setOtpPolicyAlgorithm
void setOtpPolicyAlgorithm(String otpPolicyAlgorithm)
-
isOtpPolicyCodeReusable
Boolean isOtpPolicyCodeReusable()
-
setOtpPolicyCodeReusable
void setOtpPolicyCodeReusable(Boolean isOtpPolicyCodeReusable)
-
-