Package de.xima.fc.entities
Class UserPortalLoginConfig
- java.lang.Object
-
- de.xima.cmn.dao.model.AEntity<Long>
-
- de.xima.fc.entities.AbstractEntity
-
- de.xima.fc.entities.AbstractLockableEntity
-
- de.xima.fc.entities.UserPortalLoginConfig
-
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IEntity<Long>
,de.xima.cmn.dao.interfaces.ILockableEntity<Long>
,ILockingVersionProviding
,ITransferable
,ITransferableEntity
,ITransferableLockableEntity
,Serializable
,Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>
@Entity public class UserPortalLoginConfig extends AbstractLockableEntity
Entity for the login configuration of auser portal
.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_AUTHENTICATOR_CONFIGS
static String
ATTR_INPUT_CLIENT_LAYOUT
static String
ATTR_PORTAL
static String
ATTR_REDIRECT_TARGET
static String
ATTR_REGISTRATION_ENABLED
static String
COL_FLAG_REGISTRATION_ENABLED
static String
COL_INPUT_CLIENT_LAYOUT
static String
COL_PORTAL_ID
static String
COL_REDIRECT_TARGET
-
Fields inherited from class de.xima.fc.entities.AbstractLockableEntity
COL_LOCKINGVERSION, lockingVersion
-
Fields inherited from class de.xima.fc.entities.AbstractEntity
COL_ID, id
-
Fields inherited from interface de.xima.fc.entities.interfaces.ITransferableEntity
IMPORT_ID, INVALID_ID
-
-
Constructor Summary
Constructors Constructor Description UserPortalLoginConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<UserPortalAuthConfig>
getAuthenticatorConfigs()
Long
getId()
@NotNull EInputClientLayout
getInputClientLayout()
@NotNull UserPortal
getPortal()
@NotNull EAuthRedirectTarget
getRedirectTarget()
boolean
isRegistrationEnabled()
void
setAuthenticatorConfigs(List<UserPortalAuthConfig> authenticatorConfigs)
void
setInputClientLayout(EInputClientLayout inputClientLayout)
void
setPortal(UserPortal portal)
void
setRedirectTarget(EAuthRedirectTarget redirectTarget)
void
setRegistrationEnabled(boolean registrationEnabled)
-
Methods inherited from class de.xima.fc.entities.AbstractLockableEntity
entityHasChanged, getLockingVersion, setLockingVersion, toString
-
Methods inherited from class de.xima.fc.entities.AbstractEntity
asIntValue, isPersisted, setId, setId
-
Methods inherited from class de.xima.cmn.dao.model.AEntity
compareTo, equals, getDBTableName, hashCode
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Field Detail
-
ATTR_PORTAL
public static final String ATTR_PORTAL
- See Also:
- Constant Field Values
-
ATTR_REGISTRATION_ENABLED
public static final String ATTR_REGISTRATION_ENABLED
- See Also:
- Constant Field Values
-
ATTR_INPUT_CLIENT_LAYOUT
public static final String ATTR_INPUT_CLIENT_LAYOUT
- See Also:
- Constant Field Values
-
ATTR_REDIRECT_TARGET
public static final String ATTR_REDIRECT_TARGET
- See Also:
- Constant Field Values
-
ATTR_AUTHENTICATOR_CONFIGS
public static final String ATTR_AUTHENTICATOR_CONFIGS
- See Also:
- Constant Field Values
-
COL_PORTAL_ID
public static final String COL_PORTAL_ID
- See Also:
- Constant Field Values
-
COL_FLAG_REGISTRATION_ENABLED
public static final String COL_FLAG_REGISTRATION_ENABLED
- See Also:
- Constant Field Values
-
COL_INPUT_CLIENT_LAYOUT
public static final String COL_INPUT_CLIENT_LAYOUT
- See Also:
- Constant Field Values
-
COL_REDIRECT_TARGET
public static final String COL_REDIRECT_TARGET
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
public Long getId()
-
getPortal
@NotNull public @NotNull UserPortal getPortal()
-
setPortal
public void setPortal(UserPortal portal)
-
isRegistrationEnabled
public boolean isRegistrationEnabled()
-
setRegistrationEnabled
public void setRegistrationEnabled(boolean registrationEnabled)
-
getInputClientLayout
@NotNull public @NotNull EInputClientLayout getInputClientLayout()
-
setInputClientLayout
public void setInputClientLayout(EInputClientLayout inputClientLayout)
-
getRedirectTarget
@NotNull public @NotNull EAuthRedirectTarget getRedirectTarget()
-
setRedirectTarget
public void setRedirectTarget(EAuthRedirectTarget redirectTarget)
-
getAuthenticatorConfigs
public List<UserPortalAuthConfig> getAuthenticatorConfigs()
-
setAuthenticatorConfigs
public void setAuthenticatorConfigs(List<UserPortalAuthConfig> authenticatorConfigs)
-
-