Interface SystemPropertiesDao
- All Known Implementing Classes:
SystemPropertiesDaoImpl
public interface SystemPropertiesDao
This DAO enables access to manage system properties that can be stored in the database.
User: Kelly Tisdell
Date: 6/25/12
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteSystemProperty
(SystemProperty systemProperty) Reads a SystemProperty by its internal database idvoid
removeFromCache
(SystemProperty systemProperty) Removes the SystemProperty from the null-capable cache.saveSystemProperty
(SystemProperty systemProperty)
-
Method Details
-
saveSystemProperty
-
deleteSystemProperty
-
readAllSystemProperties
List<SystemProperty> readAllSystemProperties() -
readSystemPropertyByName
-
createNewSystemProperty
SystemProperty createNewSystemProperty() -
readById
Reads a SystemProperty by its internal database id- Parameters:
id
-- Returns:
- the
SystemProperty
-
removeFromCache
Removes the SystemProperty from the null-capable cache.- Parameters:
systemProperty
- the property instance
-