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)
List<SystemProperty>
getByKeys(IEntityContext ec, List<String> keys)
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
getEntityRefs, read
-
-
-
-
Method Detail
-
getBooleanValue
boolean getBooleanValue(IEntityContext ec, String key, boolean 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)
-
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)
-
-