-
public interface IThingProductPanelManager
-
-
Method Summary
Modifier and Type Method Description abstract voidputProductPanelInfoBean(ProductPanelInfoBean productPanelInfoBean)add cache panel info of product abstract voidputProductPanelInfoBeanList(List<ProductPanelInfoBean> productPanelInfoBeans)add list of cache panel info for product abstract ProductPanelInfoBeangetProductPanelInfoBean(String productId)get panel info form cache by productId abstract List<ProductPanelInfoBean>getProductPanelInfoBeanList()Get a list of cache panel info of Product abstract ProductPanelInfoBeangetProductPanelInfoBeanFromLocal(String productId)Get a cache panel info of one Product from file cache abstract List<ProductPanelInfoBean>getProductPanelInfoBeanListFromLocal()Get a list of cache panel info of Products from file cache abstract voidupdate(ProductPanelInfoBean newBean)Update device panel info bean. abstract voidclearCache()Only clean up Cache abstract voidclearLocalMemory()Only clean up memory -
-
Method Detail
-
putProductPanelInfoBean
abstract void putProductPanelInfoBean(ProductPanelInfoBean productPanelInfoBean)
add cache panel info of product
-
putProductPanelInfoBeanList
abstract void putProductPanelInfoBeanList(List<ProductPanelInfoBean> productPanelInfoBeans)
add list of cache panel info for product
-
getProductPanelInfoBean
abstract ProductPanelInfoBean getProductPanelInfoBean(String productId)
get panel info form cache by productId
-
getProductPanelInfoBeanList
abstract List<ProductPanelInfoBean> getProductPanelInfoBeanList()
Get a list of cache panel info of Product
-
getProductPanelInfoBeanFromLocal
abstract ProductPanelInfoBean getProductPanelInfoBeanFromLocal(String productId)
Get a cache panel info of one Product from file cache
-
getProductPanelInfoBeanListFromLocal
abstract List<ProductPanelInfoBean> getProductPanelInfoBeanListFromLocal()
Get a list of cache panel info of Products from file cache
-
update
abstract void update(ProductPanelInfoBean newBean)
Update device panel info bean.
-
clearCache
abstract void clearCache()
Only clean up Cache
-
clearLocalMemory
abstract void clearLocalMemory()
Only clean up memory
-
-
-
-