Interface MyContextsDao
-
public interface MyContextsDaoMessageContextDao provides database operations interface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(MyContextsEntity contextEntity)MyContextsEntitygetContextById(java.lang.String contextId)java.util.List<MyContextsEntity>getContexts()voidremove(MyContextsEntity contextEntity)voidremoveAll()voidshrinkDb(int maxSize)voidupdate(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)
-
-