Interface MyContextsDao
-
public interface MyContextsDao
MessageContextDao provides database operations interface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(MyContextsEntity contextEntity)
MyContextsEntity
getContextById(java.lang.String contextId)
java.util.List<MyContextsEntity>
getContexts()
void
remove(MyContextsEntity contextEntity)
void
removeAll()
void
shrinkDb(int maxSize)
void
update(MyContextsEntity contextEntity)
-
-
-
Method Detail
-
add
void add(MyContextsEntity contextEntity)
-
remove
void remove(MyContextsEntity contextEntity)
-
update
void update(MyContextsEntity contextEntity)
-
removeAll
void removeAll()
-
getContexts
java.util.List<MyContextsEntity> getContexts()
-
getContextById
MyContextsEntity getContextById(java.lang.String contextId)
-
shrinkDb
void shrinkDb(int maxSize)
-
-