Skip to content

Commit

Permalink
New configuration item "filteredResultsHandlerInValidationMode".
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Oct 21, 2014
1 parent e71fb07 commit 5e4fd57
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
Expand Up @@ -209,6 +209,13 @@
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="filteredResultsHandlerInValidationMode" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
TODO
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="enableCaseInsensitiveFilter" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
Expand Down
Expand Up @@ -149,6 +149,7 @@ public class ConnectorFactoryIcfImpl implements ConnectorFactory {
"ResultsHandlerConfigurationType");
public static final String CONNECTOR_SCHEMA_RESULTS_HANDLER_CONFIGURATION_ENABLE_NORMALIZING_RESULTS_HANDLER = "enableNormalizingResultsHandler";
public static final String CONNECTOR_SCHEMA_RESULTS_HANDLER_CONFIGURATION_ENABLE_FILTERED_RESULTS_HANDLER = "enableFilteredResultsHandler";
public static final String CONNECTOR_SCHEMA_RESULTS_HANDLER_CONFIGURATION_FILTERED_RESULTS_HANDLER_IN_VALIDATION_MODE = "filteredResultsHandlerInValidationMode";
public static final String CONNECTOR_SCHEMA_RESULTS_HANDLER_CONFIGURATION_ENABLE_CASE_INSENSITIVE_HANDLER = "enableCaseInsensitiveFilter";
public static final String CONNECTOR_SCHEMA_RESULTS_HANDLER_CONFIGURATION_ENABLE_ATTRIBUTES_TO_GET_SEARCH_RESULTS_HANDLER = "enableAttributesToGetSearchResultsHandler";

Expand Down
Expand Up @@ -2449,6 +2449,9 @@ private void transformResultsHandlerConfiguration(ResultsHandlerConfiguration re
} else if (ConnectorFactoryIcfImpl.CONNECTOR_SCHEMA_RESULTS_HANDLER_CONFIGURATION_ENABLE_FILTERED_RESULTS_HANDLER
.equals(subelementName)) {
resultsHandlerConfiguration.setEnableFilteredResultsHandler(parseBoolean(prismProperty));
} else if (ConnectorFactoryIcfImpl.CONNECTOR_SCHEMA_RESULTS_HANDLER_CONFIGURATION_FILTERED_RESULTS_HANDLER_IN_VALIDATION_MODE
.equals(subelementName)) {
resultsHandlerConfiguration.setFilteredResultsHandlerInValidationMode(parseBoolean(prismProperty));
} else if (ConnectorFactoryIcfImpl.CONNECTOR_SCHEMA_RESULTS_HANDLER_CONFIGURATION_ENABLE_CASE_INSENSITIVE_HANDLER
.equals(subelementName)) {
resultsHandlerConfiguration.setEnableCaseInsensitiveFilter(parseBoolean(prismProperty));
Expand Down

0 comments on commit 5e4fd57

Please sign in to comment.