Skip to content

Commit

Permalink
[MOSIP-31982] Added the kafka config class in otp application (#1241)
Browse files Browse the repository at this point in the history
* MOSIP-32073 design document added (#1223)

Signed-off-by: Neha Farheen <[email protected]>
Co-authored-by: Neha Farheen <[email protected]>
Signed-off-by: Neha Farheen <[email protected]>

* POM changes (#1225)

Signed-off-by: Neha Farheen <[email protected]>
Co-authored-by: Neha Farheen <[email protected]>
Signed-off-by: Neha Farheen <[email protected]>

* updated the image path

Signed-off-by: Neha Farheen <[email protected]>

* MOSIP-31982 changes done for image

Signed-off-by: Neha Farheen <[email protected]>

* MOSIP-31982 changes done for image

Signed-off-by: Neha Farheen <[email protected]>

* MOSIP-31982 added kafka config in otp application

Signed-off-by: Neha Farheen <[email protected]>

* MOSIP-31982 added kafka config in otp application

Signed-off-by: Neha Farheen <[email protected]>

---------

Signed-off-by: Neha Farheen <[email protected]>
Co-authored-by: Neha Farheen <[email protected]>
  • Loading branch information
Neha2365 and Neha Farheen authored Apr 5, 2024
1 parent 4fecde1 commit a7d0f2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import io.mosip.authentication.common.service.cache.MasterDataCache;
import io.mosip.authentication.common.service.cache.MasterDataCacheInitializer;
import io.mosip.authentication.common.service.config.IDAMappingConfig;
import io.mosip.authentication.common.service.config.KafkaProducerConfig;
import io.mosip.authentication.common.service.config.LangComparatorConfig;
import io.mosip.authentication.common.service.config.OpenApiProperties;
import io.mosip.authentication.common.service.config.SwaggerConfig;
Expand Down Expand Up @@ -112,7 +113,7 @@
PartnerCACertEventServiceImpl.class, PartnerCACertEventInitializer.class,
IdAuthWebSubInitializer.class, AuthAnonymousEventPublisher.class, EnvUtil.class, KeyBindedTokenMatcherUtil.class,
HSMHealthCheck.class, PrivateKeyDecryptorHelper.class,
PasswordAuthServiceImpl.class, PasswordComparator.class, AuthenticationErrorEventingPublisher.class })
PasswordAuthServiceImpl.class, PasswordComparator.class, AuthenticationErrorEventingPublisher.class, KafkaProducerConfig.class })
@ComponentScan(basePackages = { "io.mosip.authentication.otp.service.*",
"io.mosip.kernel.core.logger.config", "${mosip.auth.adapter.impl.basepackage}" }, excludeFilters = @ComponentScan.Filter(type = FilterType.REGEX, pattern = {
"io.mosip.idrepository.core.config.IdRepoDataSourceConfig.*" }))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import org.springframework.context.annotation.Import;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.TestContext;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.util.ReflectionTestUtils;
import org.springframework.web.context.WebApplicationContext;
Expand All @@ -37,6 +38,7 @@
@ContextConfiguration(classes = {TestContext.class, WebApplicationContext.class})
@RunWith(SpringRunner.class)
@Import(EnvUtil.class)
@TestPropertySource(locations="classpath:application.properties")
public class ExchangeDataAttributesUtilTest {

@Autowired
Expand Down

0 comments on commit a7d0f2c

Please sign in to comment.