Package de.xima.fc.dao.interfaces
Interface ISystemPropertyDao
-
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<SystemProperty,Long,IEntityContext>
,IGenericDao<SystemProperty>
- All Known Implementing Classes:
SystemPropertyDao
public interface ISystemPropertyDao extends IGenericDao<SystemProperty>
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SystemProperty
createProperty(IEntityContext ec, String key, String value)
void
deleteProperty(IEntityContext ec, String key)
boolean
getBooleanValue(IEntityContext ec, String key, boolean defaultValue)
SystemProperty
getByKey(IEntityContext ec, String key)
List<SystemProperty>
getByKeyPrefix(IEntityContext ec, String keyPrefix)
Gets a list with all system properties that have a name starting with the given prefix.Map<String,String>
getByKeyPrefixAsMap(IEntityContext ec, String keyPrefix)
Gets a map with all system properties that have a name starting with the given prefix.List<SystemProperty>
getByKeys(IEntityContext ec, List<String> keys)
FormThemeReference
getDefaultSystemFormTheme(IEntityContext ec)
Gets the form theme that was configured as the default theme for the entire system.int
getIntegerValue(IEntityContext ec, String key, int defaultValue)
long
getLongValue(IEntityContext ec, String key, long defaultValue)
String
getStringValue(IEntityContext ec, String key, String defaultValue)
Returns the String value of the system property with the given key if it exists.void
updateProperties(IEntityContext ec, Map<String,String> properties)
Writes all given properties to the database.SystemProperty
updateProperty(IEntityContext ec, String key, String value)
-
Methods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDao
all, bulkDelete, bulkUpdate, checkLockingVersion, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, update
-
Methods inherited from interface de.xima.fc.dao.interfaces.IGenericDao
count, findAll, findSingle, getEntityRefs, read
-
-
-
-
Method Detail
-
getBooleanValue
boolean getBooleanValue(IEntityContext ec, String key, boolean defaultValue)
-
getIntegerValue
int getIntegerValue(IEntityContext ec, String key, int defaultValue)
-
getLongValue
long getLongValue(IEntityContext ec, String key, long defaultValue)
-
getByKey
SystemProperty getByKey(IEntityContext ec, String key)
-
getByKeys
List<SystemProperty> getByKeys(IEntityContext ec, List<String> keys)
-
getByKeyPrefix
List<SystemProperty> getByKeyPrefix(IEntityContext ec, String keyPrefix)
Gets a list with all system properties that have a name starting with the given prefix.- Parameters:
ec
- The entity context to use for accessing the database.keyPrefix
- The prefix for the keys to search for.- Returns:
- A list with all matching properties.
-
getByKeyPrefixAsMap
Map<String,String> getByKeyPrefixAsMap(IEntityContext ec, String keyPrefix)
Gets a map with all system properties that have a name starting with the given prefix. The map key is theproperty key
, the map value is theproperty value
.- Parameters:
ec
- The entity context to use for accessing the database.keyPrefix
- The prefix for the keys to search for.- Returns:
- A map with all matching properties.
-
getStringValue
String getStringValue(IEntityContext ec, String key, String defaultValue)
Returns the String value of the system property with the given key if it exists. If the system property does not exist, the provided default value will be returned.- Parameters:
ec
- entity context for database transactions.key
- of the system property.defaultValue
- to return if no system property was found for the given key.- Returns:
- the String value of the system property with the given key if it exists and the provided default value otherwise.
-
createProperty
SystemProperty createProperty(IEntityContext ec, String key, String value)
-
updateProperty
SystemProperty updateProperty(IEntityContext ec, String key, String value)
-
deleteProperty
void deleteProperty(IEntityContext ec, String key)
-
updateProperties
void updateProperties(IEntityContext ec, Map<String,String> properties)
Writes all given properties to the database. The map key is theproperty key
, the map value is theproperty value
. If a property exists already, its value is overwritten. If a property does not exist, it is created.- Parameters:
ec
- The entity context to use for accessing the database.properties
- The properties to write to the database.
-
getDefaultSystemFormTheme
FormThemeReference getDefaultSystemFormTheme(IEntityContext ec)
Gets the form theme that was configured as the default theme for the entire system. When no theme was configured, returns an appropriate default theme.- Parameters:
ec
- The entity context to use for accessing the database.- Returns:
- The default form theme for the system.
-
-