Uses of Interface
net.ontopia.topicmaps.core.TopicMapStoreIF

Packages that use TopicMapStoreIF
net.ontopia.topicmaps.core Provides interfaces for topic map objects; the topic map API for all Ontopia topic map implementations. 
net.ontopia.topicmaps.entry High level interfaces for locating and maintaining references to topic maps. 
net.ontopia.topicmaps.impl.basic The in-memory implementation of the core topic map interfaces. 
net.ontopia.topicmaps.impl.rdbms Relational database implementation of the core topic map interfaces. 
net.ontopia.topicmaps.impl.remote   
net.ontopia.topicmaps.impl.tmapi2   
net.ontopia.topicmaps.impl.utils INTERNAL: Classes that are used by many implementations. 
net.ontopia.topicmaps.nav2.utils Provides utility classes for the Navigator Tag Libraries and Framework. 
net.ontopia.topicmaps.utils This package provides topic map utility classes, which are a toolkit for working with the topic map model provided by the core interfaces. 
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.core
 

Methods in net.ontopia.topicmaps.core that return TopicMapStoreIF
 TopicMapStoreIF TopicMapStoreFactoryIF.createStore()
          PUBLIC: Creates a topic map store object.
 TopicMapStoreIF TopicMapIF.getStore()
          PUBLIC: Gets the store to which the topic map's transaction is connected.
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.entry
 

Fields in net.ontopia.topicmaps.entry declared as TopicMapStoreIF
protected  TopicMapStoreIF AbstractURLTopicMapReference.store
           
 

Fields in net.ontopia.topicmaps.entry with type parameters of type TopicMapStoreIF
protected  java.util.Map<java.lang.Object,java.util.Map<java.lang.String,TopicMapStoreIF>> StoreRegistry.txnusers
          Deprecated.  
 

Methods in net.ontopia.topicmaps.entry that return TopicMapStoreIF
 TopicMapStoreIF TopicMapReferenceIF.createStore(boolean readonly)
          PUBLIC: Creates a topic map store that lets you access the referenced topic map.
 TopicMapStoreIF StoreFactoryReference.createStore(boolean readonly)
           
 TopicMapStoreIF AbstractURLTopicMapReference.createStore(boolean readonly)
           
abstract  TopicMapStoreIF AbstractTopicMapReference.createStore(boolean readonly)
           
 TopicMapStoreIF TopicMapSourceManager.createStore(java.lang.String refkey, boolean readonly)
           
static TopicMapStoreIF TopicMaps.createStore(java.lang.String topicmapId, boolean readOnly)
          PUBLIC: Returns a new TopicMapStoreIF from the default repository.
 TopicMapStoreIF TopicMapRepositoryIF.createStore(java.lang.String refkey, boolean readonly)
          PUBLIC: Creates a new topic map store for the given topic map id.
static TopicMapStoreIF TopicMaps.createStore(java.lang.String topicmapId, boolean readOnly, java.lang.String repositoryId)
          PUBLIC: Returns a new TopicMapStoreIF from the given repository.
 TopicMapStoreIF StoreRegistry.getStore(java.lang.Object txnuser, java.lang.String refkey)
          Deprecated. INTERNAL: Looks up a topic map store for a given transaction user and topic map reference key.
 TopicMapStoreIF UserStoreRegistry.getStore(java.lang.String refkey)
          Deprecated. INTERNAL: Delegates to StoreRegistry.getStore(Object txnuser, String refkey).
 TopicMapStoreIF StoreRegistry.openStore(java.lang.Object txnuser, java.lang.String refkey, boolean readonly)
          Deprecated. INTERNAL: Open a new topic store for the given transaction user and reference key.
 TopicMapStoreIF UserStoreRegistry.openStore(java.lang.String refkey, boolean readonly)
          Deprecated. INTERNAL: Delegates to StoreRegistry.openStore(Object txnuser, String refkey, boolean readonly).
 

Methods in net.ontopia.topicmaps.entry that return types with arguments of type TopicMapStoreIF
 java.util.Collection<TopicMapStoreIF> UserStoreRegistry.getStores()
          Deprecated. INTERNAL: Delegates to StoreRegistry.getStores(Object txnuser).
 java.util.Collection<TopicMapStoreIF> StoreRegistry.getStores(java.lang.Object txnuser)
          Deprecated. INTERNAL: Returns a collection contains all stores that is registered with the given transaction user.
 

Methods in net.ontopia.topicmaps.entry with parameters of type TopicMapStoreIF
 java.lang.String StoreRegistry.getReferenceKey(java.lang.Object txnuser, TopicMapStoreIF store)
          Deprecated. INTERNAL: Returns the reference key for the given transaction user's topic map store.
 java.lang.String UserStoreRegistry.getReferenceKey(TopicMapStoreIF store)
          Deprecated. INTERNAL: Delegates to StoreRegistry.getReferenceKey(Object txnuser, TopicMapStoreIF store).
protected  void StoreRegistry.putStore(java.lang.Object txnuser, java.lang.String refkey, TopicMapStoreIF store)
          Deprecated.  
 void TopicMapReferenceIF.storeClosed(TopicMapStoreIF store)
          INTERNAL: Callback from the specified TopicMapStoreIF after it has been closed.
 void StoreFactoryReference.storeClosed(TopicMapStoreIF store)
           
 void AbstractTopicMapReference.storeClosed(TopicMapStoreIF store)
           
 

Constructors in net.ontopia.topicmaps.entry with parameters of type TopicMapStoreIF
DefaultTopicMapReference(java.lang.String id, java.lang.String title, TopicMapStoreIF store)
          Deprecated.  
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.impl.basic
 

Classes in net.ontopia.topicmaps.impl.basic that implement TopicMapStoreIF
 class InMemoryTopicMapStore
          PUBLIC: The in-memory TopicMapStoreIF implementation.
 

Methods in net.ontopia.topicmaps.impl.basic that return TopicMapStoreIF
 TopicMapStoreIF InMemoryStoreFactory.createStore()
           
 TopicMapStoreIF TopicMap.getStore()
           
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.impl.rdbms
 

Classes in net.ontopia.topicmaps.impl.rdbms that implement TopicMapStoreIF
 class RDBMSTopicMapStore
          PUBLIC: The rdbms topic map store implementation.
 

Methods in net.ontopia.topicmaps.impl.rdbms that return TopicMapStoreIF
 TopicMapStoreIF RDBMSStoreFactory.createStore()
           
 TopicMapStoreIF RDBMSTopicMapReference.createStore(boolean readonly)
           
 TopicMapStoreIF TopicMap.getStore()
           
 TopicMapStoreIF ReadOnlyTopicMap.getStore()
           
 

Methods in net.ontopia.topicmaps.impl.rdbms with parameters of type TopicMapStoreIF
 void RDBMSTopicMapReference.storeClosed(TopicMapStoreIF store)
           
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.impl.remote
 

Classes in net.ontopia.topicmaps.impl.remote that implement TopicMapStoreIF
 class RemoteTopicMapStore
          INTERNAL: The remote (remote in the sense that it deals with remote topics - and not that the transactions work in a remote or distributed fashion) extension of AbstractTopicMapStore.
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.impl.tmapi2
 

Constructors in net.ontopia.topicmaps.impl.tmapi2 with parameters of type TopicMapStoreIF
TopicMapImpl(TopicMapSystemIF tmsystem, TopicMapStoreIF store)
           
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.impl.utils
 

Classes in net.ontopia.topicmaps.impl.utils that implement TopicMapStoreIF
 class AbstractTopicMapStore
          INTERNAL: An abstract TopicMapStoreIF implementation.
 

Fields in net.ontopia.topicmaps.impl.utils with type parameters of type TopicMapStoreIF
 java.util.Collection<TopicMapStoreIF> StorePoolableObjectFactory.stores
           
 

Methods in net.ontopia.topicmaps.impl.utils that return TopicMapStoreIF
 TopicMapStoreIF TopicMapTransactionIF.getStore()
          Deprecated. PUBLIC: Gets the store to which the transaction is connected.
 TopicMapStoreIF AbstractTopicMapTransaction.getStore()
           
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.nav2.utils
 

Methods in net.ontopia.topicmaps.nav2.utils that return TopicMapStoreIF
static TopicMapStoreIF ThreadLocalStoreServletFilter.getStore()
           
 

Uses of TopicMapStoreIF in net.ontopia.topicmaps.utils
 

Fields in net.ontopia.topicmaps.utils declared as TopicMapStoreIF
protected  TopicMapStoreIF SameStoreFactory.store
           
protected  TopicMapStoreIF MergeReference.store
           
 

Methods in net.ontopia.topicmaps.utils that return TopicMapStoreIF
 TopicMapStoreIF SameStoreFactory.createStore()
          PUBLIC: Returns a topicmap store, which is the store given to the constructor.
protected  TopicMapStoreIF MergeReference.createStore()
           
 TopicMapStoreIF MergeReference.createStore(boolean readonly)
           
 

Constructors in net.ontopia.topicmaps.utils with parameters of type TopicMapStoreIF
SameStoreFactory(TopicMapStoreIF store)
          PUBLIC: Creates a TopicMapStoreFactoryIF which persistently references the given store
 



Copyright © 2000-2012 Ontopia.