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 0d3f0372c FINERACT-1932: Add starter Configuration class for
self-shareaccounts module
0d3f0372c is described below
commit 0d3f0372cda9f41faab324818bd8c10c135adb93
Author: Mohamed Magdi-Abdelmonem <[email protected]>
AuthorDate: Sat Sep 30 11:53:43 2023 +0300
FINERACT-1932: Add starter Configuration class for self-shareaccounts module
---
...ShareAccountsMapperReadPlatformServiceImpl.java | 10 ++----
.../starter/SelfShareAccountsConfiguration.java | 37 ++++++++++++++++++++++
2 files changed, 39 insertions(+), 8 deletions(-)
diff --git
a/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/shareaccounts/service/AppUserShareAccountsMapperReadPlatformServiceImpl.java
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/shareaccounts/service/AppUserShareAccountsMapperReadPlatformServiceImpl.java
index 7594e6159..249274852 100644
---
a/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/shareaccounts/service/AppUserShareAccountsMapperReadPlatformServiceImpl.java
+++
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/shareaccounts/service/AppUserShareAccountsMapperReadPlatformServiceImpl.java
@@ -19,20 +19,14 @@
package org.apache.fineract.portfolio.self.shareaccounts.service;
-import org.springframework.beans.factory.annotation.Autowired;
+import lombok.RequiredArgsConstructor;
import org.springframework.jdbc.core.JdbcTemplate;
-import org.springframework.stereotype.Service;
-@Service
+@RequiredArgsConstructor
public class AppUserShareAccountsMapperReadPlatformServiceImpl implements
AppUserShareAccountsMapperReadPlatformService {
private final JdbcTemplate jdbcTemplate;
- @Autowired
- public AppUserShareAccountsMapperReadPlatformServiceImpl(final
JdbcTemplate jdbcTemplate) {
- this.jdbcTemplate = jdbcTemplate;
- }
-
@Override
public Boolean isShareAccountsMappedToUser(Long accountId, Long appUserId)
{
return this.jdbcTemplate.queryForObject("select case when (count(*) >
0) then true else false end "
diff --git
a/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/shareaccounts/starter/SelfShareAccountsConfiguration.java
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/shareaccounts/starter/SelfShareAccountsConfiguration.java
new file mode 100644
index 000000000..9d64a4579
--- /dev/null
+++
b/fineract-provider/src/main/java/org/apache/fineract/portfolio/self/shareaccounts/starter/SelfShareAccountsConfiguration.java
@@ -0,0 +1,37 @@
+/**
+ * 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.self.shareaccounts.starter;
+
+import
org.apache.fineract.portfolio.self.shareaccounts.service.AppUserShareAccountsMapperReadPlatformService;
+import
org.apache.fineract.portfolio.self.shareaccounts.service.AppUserShareAccountsMapperReadPlatformServiceImpl;
+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 SelfShareAccountsConfiguration {
+
+ @Bean
+
@ConditionalOnMissingBean(AppUserShareAccountsMapperReadPlatformService.class)
+ public AppUserShareAccountsMapperReadPlatformService
appUserShareAccountsMapperReadPlatformService(JdbcTemplate jdbcTemplate) {
+ return new
AppUserShareAccountsMapperReadPlatformServiceImpl(jdbcTemplate);
+ }
+}