This is an automated email from the ASF dual-hosted git repository.

aleks 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 1c652ba0a Add custom Configuration class for commands module 
(FINERACT-1932)
1c652ba0a is described below

commit 1c652ba0a6f2bb66b4e9a154133c123f1bd1b3ce
Author: Sinha, Abhinav <[email protected]>
AuthorDate: Mon Oct 23 16:26:22 2023 -0400

    Add custom Configuration class for commands module (FINERACT-1932)
---
 .../service/AuditReadPlatformServiceImpl.java      |  2 -
 .../commands/starter/CommandsConfiguration.java    | 60 ++++++++++++++++++++++
 2 files changed, 60 insertions(+), 2 deletions(-)

diff --git 
a/fineract-provider/src/main/java/org/apache/fineract/commands/service/AuditReadPlatformServiceImpl.java
 
b/fineract-provider/src/main/java/org/apache/fineract/commands/service/AuditReadPlatformServiceImpl.java
index 0485b37f8..bfad524f3 100644
--- 
a/fineract-provider/src/main/java/org/apache/fineract/commands/service/AuditReadPlatformServiceImpl.java
+++ 
b/fineract-provider/src/main/java/org/apache/fineract/commands/service/AuditReadPlatformServiceImpl.java
@@ -69,9 +69,7 @@ import org.apache.fineract.useradministration.domain.AppUser;
 import 
org.apache.fineract.useradministration.service.AppUserReadPlatformService;
 import org.springframework.jdbc.core.JdbcTemplate;
 import org.springframework.jdbc.core.RowMapper;
-import org.springframework.stereotype.Service;
 
-@Service
 @RequiredArgsConstructor
 @Slf4j
 public class AuditReadPlatformServiceImpl implements AuditReadPlatformService {
diff --git 
a/fineract-provider/src/main/java/org/apache/fineract/commands/starter/CommandsConfiguration.java
 
b/fineract-provider/src/main/java/org/apache/fineract/commands/starter/CommandsConfiguration.java
new file mode 100644
index 000000000..774d14833
--- /dev/null
+++ 
b/fineract-provider/src/main/java/org/apache/fineract/commands/starter/CommandsConfiguration.java
@@ -0,0 +1,60 @@
+/**
+ * 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.commands.starter;
+
+import org.apache.fineract.commands.service.AuditReadPlatformService;
+import org.apache.fineract.commands.service.AuditReadPlatformServiceImpl;
+import 
org.apache.fineract.infrastructure.core.data.PaginationParametersDataValidator;
+import org.apache.fineract.infrastructure.core.serialization.FromJsonHelper;
+import org.apache.fineract.infrastructure.core.service.PaginationHelper;
+import 
org.apache.fineract.infrastructure.core.service.database.DatabaseSpecificSQLGenerator;
+import 
org.apache.fineract.infrastructure.security.service.PlatformSecurityContext;
+import org.apache.fineract.infrastructure.security.utils.ColumnValidator;
+import 
org.apache.fineract.organisation.office.service.OfficeReadPlatformService;
+import org.apache.fineract.organisation.staff.service.StaffReadPlatformService;
+import org.apache.fineract.portfolio.client.service.ClientReadPlatformService;
+import 
org.apache.fineract.portfolio.loanproduct.service.LoanProductReadPlatformService;
+import 
org.apache.fineract.portfolio.savings.service.DepositProductReadPlatformService;
+import 
org.apache.fineract.portfolio.savings.service.SavingsProductReadPlatformService;
+import 
org.apache.fineract.useradministration.service.AppUserReadPlatformService;
+import 
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.jdbc.core.JdbcTemplate;
+
+@Configuration
+public class CommandsConfiguration {
+
+    @Bean
+    @ConditionalOnMissingBean(AuditReadPlatformService.class)
+    public AuditReadPlatformService auditReadPlatformService(JdbcTemplate 
jdbcTemplate, PlatformSecurityContext context,
+            FromJsonHelper fromApiJsonHelper, AppUserReadPlatformService 
appUserReadPlatformService,
+            OfficeReadPlatformService officeReadPlatformService, 
ClientReadPlatformService clientReadPlatformService,
+            LoanProductReadPlatformService loanProductReadPlatformService, 
StaffReadPlatformService staffReadPlatformService,
+            PaginationHelper paginationHelper, DatabaseSpecificSQLGenerator 
sqlGenerator,
+            PaginationParametersDataValidator 
paginationParametersDataValidator,
+            SavingsProductReadPlatformService 
savingsProductReadPlatformService,
+            DepositProductReadPlatformService 
depositProductReadPlatformService, ColumnValidator columnValidator) {
+        return new AuditReadPlatformServiceImpl(jdbcTemplate, context, 
fromApiJsonHelper, appUserReadPlatformService,
+                officeReadPlatformService, clientReadPlatformService, 
loanProductReadPlatformService, staffReadPlatformService,
+                paginationHelper, sqlGenerator, 
paginationParametersDataValidator, savingsProductReadPlatformService,
+                depositProductReadPlatformService, columnValidator);
+    }
+
+}

Reply via email to