Uses of Interface
net.ontopia.persistence.proxy.StorageAccessIF
-
Packages that use StorageAccessIF Package Description net.ontopia.persistence.proxy An object-relational mapping framework.net.ontopia.topicmaps.impl.rdbms Relational database implementation of the core topic map interfaces. -
-
Uses of StorageAccessIF in net.ontopia.persistence.proxy
Classes in net.ontopia.persistence.proxy that implement StorageAccessIF Modifier and Type Class Description class
RDBMSAccess
INTERNAL: A storage access implementation accessing relational databases using JDBC.Fields in net.ontopia.persistence.proxy declared as StorageAccessIF Modifier and Type Field Description protected StorageAccessIF
AbstractTransaction. access
Methods in net.ontopia.persistence.proxy that return StorageAccessIF Modifier and Type Method Description StorageAccessIF
RDBMSStorage. createAccess(boolean readonly)
StorageAccessIF
AbstractTransaction. getStorageAccess()
StorageAccessIF
TransactionIF. getStorageAccess()
INTERNAL: Gets the storage access used by the transaction.Methods in net.ontopia.persistence.proxy with parameters of type StorageAccessIF Modifier and Type Method Description E
QueryCache. executeQuery(StorageAccessIF access, K cachekey, Object[] query_params)
abstract boolean
AbstractLocalCache. exists(StorageAccessIF access, IdentityIF identity)
boolean
ROLocalCache. exists(StorageAccessIF access, IdentityIF identity)
boolean
RWLocalCache. exists(StorageAccessIF access, IdentityIF identity)
boolean
SharedCache. exists(StorageAccessIF access, IdentityIF identity)
boolean
StatisticsCache. exists(StorageAccessIF access, IdentityIF identity)
boolean
StorageCacheIF. exists(StorageAccessIF access, IdentityIF identity)
INTERNAL: Can be called to verify whether the specified identity exists in the cache or in the data repository.abstract Object
AbstractLocalCache. getValue(StorageAccessIF access, IdentityIF identity, int field)
Object
ROLocalCache. getValue(StorageAccessIF access, IdentityIF identity, int field)
Object
RWLocalCache. getValue(StorageAccessIF access, IdentityIF identity, int field)
Object
SharedCache. getValue(StorageAccessIF access, IdentityIF identity, int field)
Object
StatisticsCache. getValue(StorageAccessIF access, IdentityIF identity, int field)
Object
StorageCacheIF. getValue(StorageAccessIF access, IdentityIF identity, int field)
INTERNAL: A call forwarded by the transaction (TransactionIF) from persistent objects (PersistentIF) when the field value needs to be retrieved from storage.int
AbstractLocalCache. prefetch(StorageAccessIF access, Class<?> type, int field, int nextField, boolean traverse, Collection<IdentityIF> identities)
int
SharedCache. prefetch(StorageAccessIF access, Class<?> type, int field, int nextField, boolean traverse, Collection<IdentityIF> identities)
int
StatisticsCache. prefetch(StorageAccessIF access, Class<?> type, int field, int nextField, boolean traverse, Collection<IdentityIF> identities)
int
StorageCacheIF. prefetch(StorageAccessIF access, Class<?> type, int field, int nextField, boolean traverse, Collection<IdentityIF> identities)
Constructors in net.ontopia.persistence.proxy with parameters of type StorageAccessIF Constructor Description ROTransaction(StorageAccessIF access)
RWTransaction(StorageAccessIF access)
-
Uses of StorageAccessIF in net.ontopia.topicmaps.impl.rdbms
Fields in net.ontopia.topicmaps.impl.rdbms declared as StorageAccessIF Modifier and Type Field Description protected StorageAccessIF
SharedLocatorLookup. access
protected StorageAccessIF
SharedQueryLookup. access
Constructors in net.ontopia.topicmaps.impl.rdbms with parameters of type StorageAccessIF Constructor Description SharedLocatorLookup(StorageAccessIF access, QueryCache<LocatorIF,E> qcache, IdentityIF tmid)
SharedQueryLookup(StorageAccessIF access, QueryCache<ParameterArray,E> qcache)
-