add cqlconfigbeans

This commit is contained in:
justin.mckelvy
2023-06-16 09:15:54 -06:00
parent 6fe8784860
commit 300a21fcb4
4 changed files with 66 additions and 18 deletions

View File

@@ -427,7 +427,7 @@ public class AppProperties {
getCqlCompilerSignatureLevel(),
getCqlCompilerCompatibilityLevel()
);
public CqlTranslatorOptions getCqlTranslator() {
public CqlTranslatorOptions getCqlTranslatorOptions() {
return this.cqlTranslatorOptions;
}
@@ -446,7 +446,7 @@ public class AppProperties {
CqlOptions cqlOptions = new CqlOptions();
cqlOptions.setUseEmbeddedLibraries(this.cql_use_embedded_libraries);
cqlOptions.setCqlEngineOptions(this.getCqlEngineOptions());
cqlOptions.setCqlTranslatorOptions(this.getCqlTranslator());
cqlOptions.setCqlTranslatorOptions(this.getCqlTranslatorOptions());
return cqlOptions;
}