Criteria LiteralHandlingMode can only be configured programatically. We need to support String-based configurations as well.

Description

Currently, the Criteria API LiteralHandlingMode can only be configured programmatically, like this:

Map config = super.getConfig(); config.put( AvailableSettings.CRITERIA_LITERAL_HANDLING_MODE, LiteralHandlingMode.INLINE );

However, that's an issue because we might want to use the String-based short value via the persistence.xml file.

Activity

Show:

Vlad MihalceaOctober 24, 2017 at 12:07 PM

We can now configure this property like this:

@Override protected Map getConfig() { Map config = super.getConfig(); config.put( AvailableSettings.CRITERIA_LITERAL_HANDLING_MODE, "inline" ); return config; }
Fixed

Details

Assignee

Reporter

Fix versions

Priority

Created October 24, 2017 at 9:24 AM
Updated February 6, 2018 at 5:02 PM
Resolved October 24, 2017 at 12:07 PM