This is an automated email from the ASF dual-hosted git repository.
arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/develop by this push:
new 00cab57a9 FINERACT-1932: Add custom Configuration class for search
module
00cab57a9 is described below
commit 00cab57a9be44c37601aa287c55609616a293d3e
Author: Mohamed Magdi-Abdelmonem <[email protected]>
AuthorDate: Sun Sep 3 18:41:16 2023 +0300
FINERACT-1932: Add custom Configuration class for search module
---
.../service/SearchReadPlatformServiceImpl.java | 2 -
.../search/starter/SearchConfiguration.java | 43 ++++++++++++++++++++++
2 files changed, 43 insertions(+), 2 deletions(-)
diff --git
a/fineract-provider/src/main/java/org/apache/fineract/portfolio/search/service/SearchReadPlatformServiceImpl.java
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/search/service/SearchReadPlatformServiceImpl.java
index f48aa46f9..b22999bd0 100644
---
a/fineract-provider/src/main/java/org/apache/fineract/portfolio/search/service/SearchReadPlatformServiceImpl.java
+++
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/search/service/SearchReadPlatformServiceImpl.java
@@ -47,9 +47,7 @@ import org.apache.fineract.useradministration.domain.AppUser;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource;
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
-import org.springframework.stereotype.Service;
-@Service
@RequiredArgsConstructor
public class SearchReadPlatformServiceImpl implements
SearchReadPlatformService {
diff --git
a/fineract-provider/src/main/java/org/apache/fineract/portfolio/search/starter/SearchConfiguration.java
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/search/starter/SearchConfiguration.java
new file mode 100644
index 000000000..222cb63cc
--- /dev/null
+++
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/search/starter/SearchConfiguration.java
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.fineract.portfolio.search.starter;
+
+import
org.apache.fineract.infrastructure.core.service.database.DatabaseSpecificSQLGenerator;
+import
org.apache.fineract.infrastructure.security.service.PlatformSecurityContext;
+import
org.apache.fineract.organisation.office.service.OfficeReadPlatformService;
+import
org.apache.fineract.portfolio.loanproduct.service.LoanProductReadPlatformService;
+import org.apache.fineract.portfolio.search.service.SearchReadPlatformService;
+import
org.apache.fineract.portfolio.search.service.SearchReadPlatformServiceImpl;
+import
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
+
+@Configuration
+public class SearchConfiguration {
+
+ @Bean
+ @ConditionalOnMissingBean(SearchReadPlatformService.class)
+ public SearchReadPlatformService
searchReadPlatformService(NamedParameterJdbcTemplate namedParameterJdbcTemplate,
+ PlatformSecurityContext context, LoanProductReadPlatformService
loanProductReadPlatformService,
+ OfficeReadPlatformService officeReadPlatformService,
DatabaseSpecificSQLGenerator sqlGenerator) {
+ return new SearchReadPlatformServiceImpl(namedParameterJdbcTemplate,
context, loanProductReadPlatformService,
+ officeReadPlatformService, sqlGenerator);
+ }
+}