FINERACT-1932: Add starter Configuration class for self-shareaccounts module
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 7594e61..2492748 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 0000000..9d64a45
--- /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);
+ }
+}