Uses of Class
de.xima.fc.entities.SystemProperty
-
Packages that use SystemProperty Package Description de.xima.fc.api.entity Package for the API access of the model classes.de.xima.fc.dao.impl de.xima.fc.dao.interfaces de.xima.fc.encryption.db de.xima.fc.gui.bean.settings de.xima.fc.handler.entity de.xima.fc.handler.interfaces.entity de.xima.fc.utils Package für Utilsklassen -
-
Uses of SystemProperty in de.xima.fc.api.entity
Methods in de.xima.fc.api.entity that return SystemProperty Modifier and Type Method Description SystemProperty
SystemPropertyAPI. getByKey(UserContext uc, String key)
Method for determining aSystemProperty
s by a given key.Methods in de.xima.fc.api.entity that return types with arguments of type SystemProperty Modifier and Type Method Description List<SystemProperty>
SystemPropertyAPI. getByKeyPrefix(UserContext uc, String keyPrefix)
Method for determining aList
ofSystemProperty
s that have the given key prefix.List<SystemProperty>
SystemPropertyAPI. getByKeys(UserContext uc, List<String> keys)
-
Uses of SystemProperty in de.xima.fc.dao.impl
Methods in de.xima.fc.dao.impl that return SystemProperty Modifier and Type Method Description SystemProperty
SystemPropertyDao. createProperty(IEntityContext ec, String key, String value)
SystemProperty
SystemPropertyDao. getByKey(IEntityContext ec, String key)
SystemProperty
SystemPropertyDao. updateProperty(IEntityContext ec, String key, String value)
Methods in de.xima.fc.dao.impl that return types with arguments of type SystemProperty Modifier and Type Method Description List<SystemProperty>
SystemPropertyDao. getByKeyPrefix(IEntityContext ec, String keyPrefix)
List<SystemProperty>
SystemPropertyDao. getByKeys(IEntityContext ec, List<String> keys)
-
Uses of SystemProperty in de.xima.fc.dao.interfaces
Methods in de.xima.fc.dao.interfaces that return SystemProperty Modifier and Type Method Description SystemProperty
ISystemPropertyDao. createProperty(IEntityContext ec, String key, String value)
SystemProperty
ISystemPropertyDao. getByKey(IEntityContext ec, String key)
SystemProperty
ISystemPropertyDao. updateProperty(IEntityContext ec, String key, String value)
Methods in de.xima.fc.dao.interfaces that return types with arguments of type SystemProperty Modifier and Type Method Description List<SystemProperty>
ISystemPropertyDao. getByKeyPrefix(IEntityContext ec, String keyPrefix)
List<SystemProperty>
ISystemPropertyDao. getByKeys(IEntityContext ec, List<String> keys)
-
Uses of SystemProperty in de.xima.fc.encryption.db
Methods in de.xima.fc.encryption.db that return SystemProperty Modifier and Type Method Description SystemProperty
DBEncryptionProcessor. updateEncryptionTestString()
-
Uses of SystemProperty in de.xima.fc.gui.bean.settings
Methods in de.xima.fc.gui.bean.settings that return SystemProperty Modifier and Type Method Description SystemProperty
ApplicationConfigBean. updateSystemProperty(IEntityContext ec, EPasswordPolicy pwdPolicy, String value)
SystemProperty
ApplicationConfigBean. updateSystemProperty(IEntityContext ec, String key, String value)
-
Uses of SystemProperty in de.xima.fc.handler.entity
Methods in de.xima.fc.handler.entity that return SystemProperty Modifier and Type Method Description SystemProperty
SystemPropertyHandler. getByKey(UserContext uc, String key)
Methods in de.xima.fc.handler.entity that return types with arguments of type SystemProperty Modifier and Type Method Description List<SystemProperty>
SystemPropertyHandler. getByKeyPrefix(UserContext uc, String keyPrefix)
List<SystemProperty>
SystemPropertyHandler. getByKeys(UserContext uc, List<String> keys)
-
Uses of SystemProperty in de.xima.fc.handler.interfaces.entity
Methods in de.xima.fc.handler.interfaces.entity that return SystemProperty Modifier and Type Method Description SystemProperty
ISystemPropertyHandler. getByKey(UserContext uc, String key)
Retrieves aProperty
by a given key.Methods in de.xima.fc.handler.interfaces.entity that return types with arguments of type SystemProperty Modifier and Type Method Description List<SystemProperty>
ISystemPropertyHandler. getByKeyPrefix(UserContext uc, String keyPrefix)
Retrives aList
ofSystemProperty
s by a given key prefix.List<SystemProperty>
ISystemPropertyHandler. getByKeys(UserContext uc, List<String> keys)
-
Uses of SystemProperty in de.xima.fc.utils
Method parameters in de.xima.fc.utils with type arguments of type SystemProperty Modifier and Type Method Description static String
UserMgmtUtils. genPwd(List<SystemProperty> pwdPolicyConfig)
Generates a password based on the configured system rulesstatic List<org.passay.Rule>
UserMgmtUtils. getPasswordRules(List<SystemProperty> pwdPolicyConfig, boolean useDefaultForGen)
Determines the password policy rules set from the persisted system configuration.static PasswordValidationResult
UserMgmtUtils. validatePassword(String userName, String oldPassword, String newPassword, List<SystemProperty> systemConfig)
Validates Passwordsstatic PasswordValidationResult
UserMgmtUtils. validatePassword(String oldPassword, String newPassword, List<SystemProperty> systemConfig)
Validates Passwordsstatic PasswordValidationResult
UserMgmtUtils. validatePassword(String password, List<SystemProperty> systemConfig)
Validates Passwords
-