Class HibernateOrmMapperOutboxPollingSpiSettings
- java.lang.Object
-
- org.hibernate.search.mapper.orm.coordination.outboxpolling.cfg.spi.HibernateOrmMapperOutboxPollingSpiSettings
-
@Incubating public final class HibernateOrmMapperOutboxPollingSpiSettings extends Object
SPI-related settings.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HibernateOrmMapperOutboxPollingSpiSettings.CoordinationRadicals
static class
HibernateOrmMapperOutboxPollingSpiSettings.Radicals
Configuration property keys without theprefix
.
-
Field Summary
Fields Modifier and Type Field Description static String
AGENT_ENTITY_MAPPING
Allows the user to define a specific Hibernate mapping for theAgent
entity.static String
OUTBOXEVENT_ENTITY_MAPPING
Allows the user to define a specific Hibernate mapping for theOutboxEvent
entity.static String
PREFIX
The prefix expected for the key of every Hibernate Search configuration property when using the Hibernate ORM mapper.
-
-
-
Field Detail
-
PREFIX
public static final String PREFIX
The prefix expected for the key of every Hibernate Search configuration property when using the Hibernate ORM mapper.- See Also:
- Constant Field Values
-
OUTBOXEVENT_ENTITY_MAPPING
public static final String OUTBOXEVENT_ENTITY_MAPPING
Allows the user to define a specific Hibernate mapping for theOutboxEvent
entity.Only available when
HibernateOrmMapperSettings.COORDINATION_STRATEGY
is "outbox-polling".Expects a String value containing the xml expressing the Hibernate mapping for the entity.
The default for this value is
OutboxPollingOutboxEventAdditionalJaxbMappingProducer.ENTITY_DEFINITION
- See Also:
- Constant Field Values
-
AGENT_ENTITY_MAPPING
public static final String AGENT_ENTITY_MAPPING
Allows the user to define a specific Hibernate mapping for theAgent
entity.Only available when
HibernateOrmMapperSettings.COORDINATION_STRATEGY
is "outbox-polling".Expects a String value containing the xml expressing the Hibernate mapping for the entity.
The default for this value is
OutboxPollingAgentAdditionalJaxbMappingProducer.ENTITY_DEFINITION
- See Also:
- Constant Field Values
-
-