Class EngineSpiSettings
- java.lang.Object
-
- org.hibernate.search.engine.cfg.spi.EngineSpiSettings
-
public class EngineSpiSettings extends Object
Configuration properties for the Hibernate Search engine that are considered SPI (and not API).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EngineSpiSettings.Defaults
Default values for the different settings if no values are given.static class
EngineSpiSettings.Radicals
Configuration property keys without theprefix
.
-
Field Summary
Fields Modifier and Type Field Description static String
BEAN_CONFIGURERS
TheBeanConfigurer
instances used to programmatically assign names to beans.static String
PREFIX
The prefix expected for the key of every Hibernate Search configuration property.static String
THREAD_PROVIDER
TheThreadProvider
used to create threads.
-
-
-
Field Detail
-
PREFIX
public static final String PREFIX
The prefix expected for the key of every Hibernate Search configuration property.- See Also:
- Constant Field Values
-
BEAN_CONFIGURERS
public static final String BEAN_CONFIGURERS
TheBeanConfigurer
instances used to programmatically assign names to beans.Expects a multi-valued reference to a bean of type
BeanConfigurer
.Defaults to no value.
-
THREAD_PROVIDER
public static final String THREAD_PROVIDER
TheThreadProvider
used to create threads.Expects a reference to a bean of type
ThreadProvider
.Defaults to
EngineSpiSettings.Defaults.THREAD_PROVIDER
, an embedded thread provider.- See Also:
- Constant Field Values
-
-