org.hibernate.search.cfg
Class SearchConfigurationFromHibernateCore

java.lang.Object
  extended by org.hibernate.search.cfg.SearchConfigurationFromHibernateCore
All Implemented Interfaces:
SearchConfiguration

public class SearchConfigurationFromHibernateCore
extends Object
implements SearchConfiguration

Search configuration implementation wrapping an Hibernate Core configuration

Author:
Emmanuel Bernard

Constructor Summary
SearchConfigurationFromHibernateCore(Configuration cfg)
           
 
Method Summary
 Class<?> getClassMapping(String name)
          Returns a Class from a String parameter.
 Iterator<Class<?>> getClassMappings()
          Returns an iterator over the list of indexed classes
 SearchMapping getProgrammaticMapping()
           
 Properties getProperties()
          Gets properties as a java.util.Properties object.
 String getProperty(String propertyName)
          Gets a configuration property from its name or null if not present
 Map<Class<? extends ServiceProvider<?>>,Object> getProvidedServices()
          Provide service instances.
 org.hibernate.annotations.common.reflection.ReflectionManager getReflectionManager()
          Returns a reflection manager if already available in the environment null otherwise
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SearchConfigurationFromHibernateCore

public SearchConfigurationFromHibernateCore(Configuration cfg)
Method Detail

getClassMappings

public Iterator<Class<?>> getClassMappings()
Description copied from interface: SearchConfiguration
Returns an iterator over the list of indexed classes

Specified by:
getClassMappings in interface SearchConfiguration
Returns:
iterator of indexed classes.

getClassMapping

public Class<?> getClassMapping(String name)
Description copied from interface: SearchConfiguration
Returns a Class from a String parameter.

Specified by:
getClassMapping in interface SearchConfiguration
Returns:
corresponding class instance.

getProperty

public String getProperty(String propertyName)
Description copied from interface: SearchConfiguration
Gets a configuration property from its name or null if not present

Specified by:
getProperty in interface SearchConfiguration
Parameters:
propertyName - - as a String.
Returns:
the property as a String

getProperties

public Properties getProperties()
Description copied from interface: SearchConfiguration
Gets properties as a java.util.Properties object.

Specified by:
getProperties in interface SearchConfiguration
Returns:
a java.util.Properties object.
See Also:
object

getReflectionManager

public org.hibernate.annotations.common.reflection.ReflectionManager getReflectionManager()
Description copied from interface: SearchConfiguration
Returns a reflection manager if already available in the environment null otherwise

Specified by:
getReflectionManager in interface SearchConfiguration
Returns:
ReflectionManager

getProgrammaticMapping

public SearchMapping getProgrammaticMapping()
Specified by:
getProgrammaticMapping in interface SearchConfiguration
Returns:
the programmatic configuration or null

getProvidedServices

public Map<Class<? extends ServiceProvider<?>>,Object> getProvidedServices()
Description copied from interface: SearchConfiguration
Provide service instances. Return the provided services (provider and instance at stake) These services are passed untouched by Hibernate Search via the BuildContext.requestService(Class) API Note that the lifecycle methods: - ServiceProvider.start(java.util.Properties) - ServiceProvider.stop() of the provider are *not* called. For services using the same ServiceProvider class, provided services have priority over managed services (ie the ones using the service locator pattern).

Specified by:
getProvidedServices in interface SearchConfiguration


Copyright © 2006-2012 Red Hat Middleware, LLC. All Rights Reserved