public interface IItemValueStore<T>
void
create(Item item, T value)
delete(Item item)
deleteAll()
T
get(Item item)
java.util.List<T>
getMultiple(java.util.List<Item> items)
update(Item item, T value)
void create(Item item, T value) throws java.sql.SQLException
java.sql.SQLException
void update(Item item, T value) throws java.sql.SQLException
void delete(Item item) throws java.sql.SQLException
T get(Item item) throws java.sql.SQLException
void deleteAll() throws java.sql.SQLException
java.util.List<T> getMultiple(java.util.List<Item> items) throws java.sql.SQLException
Copyright © 2021. All Rights Reserved.