| |
|
| java.lang.Object com.jofti.config.DefaultIndexConfig
DefaultIndexConfig | public class DefaultIndexConfig implements IndexConfig(Code) | | A convenience class for use in the addIndex method. The default config already has the default entries
in each of the configuration properties. The only thing not present are any class mappings - so
no changes to this object will result in only the built-in types being indexed.
The settings are:
- name: default
- adapter: com.jofti.cache.adapter.MapAdapter
- parserType: com.jofti.introspect.JavaBeanClassIntrospector
- indexType: com.jofti.tree.TreeIndex
- ClassMappings: [ ]
- queryMappings: [ ]
- adapterProperties: [ ]
author: Steve Woodcock (steve@jofti.com) version: 1.0
|
DefaultIndexConfig | public DefaultIndexConfig()(Code) | | |
getAdapterProperties | public Properties getAdapterProperties()(Code) | | Returns the adapterProperties. |
getClassMappings | public Map getClassMappings()(Code) | | Returns the classMappings. |
getIndexMappings | public Map getIndexMappings()(Code) | | |
getIndexType | public String getIndexType()(Code) | | Returns the indexType. |
getQueryMappings | public Map getQueryMappings()(Code) | | Returns the queryMappings. |
isLazyLoaded | public boolean isLazyLoaded()(Code) | | Returns the lazyLoaded. |
setAdapterProperties | public void setAdapterProperties(Properties adapterProperties)(Code) | | Parameters: adapterProperties - The adapterProperties to set. |
setCacheAdapter | public void setCacheAdapter(String cacheAdapter)(Code) | | Parameters: cacheAdapter - The cacheAdapter to set. |
setIndexProperties | public synchronized void setIndexProperties(Properties indexProperties)(Code) | | |
setIndexType | public void setIndexType(String indexType)(Code) | | Parameters: indexType - The indexType to set. |
setLazyLoaded | public void setLazyLoaded(boolean lazyLoaded)(Code) | | Parameters: lazyLoaded - The lazyLoaded to set. |
setName | public void setName(String name)(Code) | | Parameters: name - The name to set. |
setParserType | public void setParserType(String parserType)(Code) | | Parameters: parserType - The parserType to set. |
|
|
|