dbXML API

Uses of Class
com.dbxml.util.Configuration

Packages that use Configuration
com.dbxml.db.admin This is a top-level package for the dbXML Administrator implementation. 
com.dbxml.db.admin.xmleditor   
com.dbxml.db.common.btree Defines the dbXML BTree implementation as well as the low-level Paged file system. 
com.dbxml.db.common.filers Defines the standard dbXML Filer implementations which include MemFiler and FSFiler. 
com.dbxml.db.common.fulltext Defines the dbXML Full Text Indexer and a basic QueryResolver for Full Text retrieval. 
com.dbxml.db.common.indexers Defines the dbXML standard Indexer implementations which consist of NameIndexer and ValueIndexer. 
com.dbxml.db.common.scripting Defines the dbXML Scripting package. 
com.dbxml.db.common.security Implements the standard SecurityManager classes. 
com.dbxml.db.core This is the top-level package for all dbXML Core functionality. 
com.dbxml.db.core.extension Defines the dbXML Extension interface and implements ExtensionManager, a reflection/invokation system and a Simple Extension implementation. 
com.dbxml.db.core.indexer Defines the dbXML Indexer interfaces  
com.dbxml.db.core.query Implements the dbXML QueryEngine and XPathQueryResolver. 
com.dbxml.db.core.trigger Defines the dbXML Trigger interface and implements TriggerManager, several Trigger-related Exceptions and a Simple Trigger implementation. 
com.dbxml.db.embedded This package contains all of the classes that comprise the dbXML embedded framework. 
com.dbxml.db.enterprise.dbfiler Defines the dbXML DBFiler class as well as a Connection pooling system. 
com.dbxml.db.server This package contains all of the classes that comprise the dbXML server framework. 
com.dbxml.db.server.services Defines several Services that plug into the dbXML server framework in order to allow dbXML to operate as a stand-alone Server. 
com.dbxml.util This package contains many of the utility classes required by dbXML  
 

Uses of Configuration in com.dbxml.db.admin
 

Methods in com.dbxml.db.admin that return Configuration
 Configuration AdminConfig.getConfiguration()
           
 

Uses of Configuration in com.dbxml.db.admin.xmleditor
 

Methods in com.dbxml.db.admin.xmleditor with parameters of type Configuration
 void ElementResourceMap.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.common.btree
 

Methods in com.dbxml.db.common.btree that return Configuration
 Configuration Paged.getConfig()
           
 

Methods in com.dbxml.db.common.btree with parameters of type Configuration
 void PageFilterService.setConfig(Configuration config)
           
 void Paged.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.common.filers
 

Methods in com.dbxml.db.common.filers with parameters of type Configuration
 void FSFiler.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.common.fulltext
 

Methods in com.dbxml.db.common.fulltext that return Configuration
 Configuration FullTextIndexer.getConfig()
           
 

Methods in com.dbxml.db.common.fulltext with parameters of type Configuration
 void FullTextIndexer.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.common.indexers
 

Methods in com.dbxml.db.common.indexers with parameters of type Configuration
 void ValueIndexer.setConfig(Configuration config)
           
 void NameIndexer.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.common.scripting
 

Methods in com.dbxml.db.common.scripting with parameters of type Configuration
 void ScriptTrigger.setConfig(Configuration config)
           
 void ScriptExtension.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.common.security
 

Methods in com.dbxml.db.common.security with parameters of type Configuration
 void SimpleSecurityManager.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.core
 

Methods in com.dbxml.db.core that return Configuration
 Configuration CollectionManager.getConfig()
           
 

Methods in com.dbxml.db.core with parameters of type Configuration
 void Database.setConfig(Configuration config)
           
 void CollectionManager.setConfig(Configuration config)
           
 Collection CollectionManager.createCollection(java.lang.String path, Configuration cfg)
          createCollection creates a new Collection object and any associated system resources that the Collection will need.
 void Collection.setConfig(Configuration config)
           
 Collection Collection.createCollection(java.lang.String path, Configuration config)
           
 

Uses of Configuration in com.dbxml.db.core.extension
 

Methods in com.dbxml.db.core.extension with parameters of type Configuration
 void SimpleExtension.setConfig(Configuration config)
           
 void ExtensionManager.setConfig(Configuration config)
           
 Extension ExtensionManager.create(Configuration cfg)
          create creates a new Extension object and any associated system resources that the Extension will need.
 

Uses of Configuration in com.dbxml.db.core.indexer
 

Methods in com.dbxml.db.core.indexer with parameters of type Configuration
 void IndexManager.setConfig(Configuration config)
           
 Indexer IndexManager.create(Configuration cfg)
          create creates a new Indexer object and any associated system resources that the Indexer will need.
 

Uses of Configuration in com.dbxml.db.core.query
 

Methods in com.dbxml.db.core.query with parameters of type Configuration
 void QueryEngine.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.core.trigger
 

Methods in com.dbxml.db.core.trigger with parameters of type Configuration
 void TriggerManager.setConfig(Configuration config)
           
 Trigger TriggerManager.create(Configuration cfg)
          create creates a new Trigger object and any associated system resources that the Trigger will need.
 void SimpleTrigger.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.embedded
 

Methods in com.dbxml.db.embedded that return Configuration
 Configuration EmbeddedConfiguration.getConfig()
           
 

Uses of Configuration in com.dbxml.db.enterprise.dbfiler
 

Methods in com.dbxml.db.enterprise.dbfiler with parameters of type Configuration
 void DBFiler.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.server
 

Methods in com.dbxml.db.server that return Configuration
 Configuration ServiceManager.getConfig()
           
 

Methods in com.dbxml.db.server with parameters of type Configuration
 void SimpleService.setConfig(Configuration config)
           
 void ServiceManager.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.db.server.services
 

Methods in com.dbxml.db.server.services with parameters of type Configuration
 void HTTPService.setConfig(Configuration config)
           
 void DBService.setConfig(Configuration config)
           
 

Uses of Configuration in com.dbxml.util
 

Methods in com.dbxml.util that return Configuration
 Configuration SimpleConfigurable.getConfig()
           
 Configuration[] Configuration.getChildren()
          getChildren returns the child Configuration nodes for this Configuration node.
 Configuration Configuration.getChild(java.lang.String name, boolean create)
          getChild returns the first child Configuration node that matches the specified name.
 Configuration Configuration.getChild(java.lang.String name)
          getChild returns the first child Configuration node that matches the specified name.
 Configuration Configuration.add(java.lang.String name)
          add adds a new Configuration node to this Configuration node.
 Configuration Configurable.getConfig()
          getConfig retrieves the configuration information for the Configurable object instance.
 

Methods in com.dbxml.util with parameters of type Configuration
 void SimpleConfigurable.setConfig(Configuration config)
           
 void ConfigurationCallback.process(Configuration cfg)
           
 void Configuration.add(Configuration newConfig)
          add adds an existing Configuration node to this Configuration node.
 void Configurable.setConfig(Configuration config)
          setConfig sets the configuration information for the Configurable object instance.
 

Constructors in com.dbxml.util with parameters of type Configuration
SimpleConfigurable(Configuration config)
           
 


dbXML API

Copyright (c) 2004 The dbXML Group