Class KycFilterConfig
- java.lang.Object
-
- io.mosip.authentication.service.kyc.config.KycFilterConfig
-
@Configuration public class KycFilterConfig extends Object
The configuration for adding filters.- Author:
- Manoj SP
-
-
Constructor Summary
Constructors Constructor Description KycFilterConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.boot.web.servlet.FilterRegistrationBean<KycAuthenticationFilter>getEkycFilter()Gets the eKyc filter.org.springframework.boot.web.servlet.FilterRegistrationBean<IdentityKeyBindingFilter>getKeyBindingFilter()Gets the Kyc Exchange filter.org.springframework.boot.web.servlet.FilterRegistrationBean<KycAuthFilter>getKycAuthFilter()Gets the Kyc Auth filter.org.springframework.boot.web.servlet.FilterRegistrationBean<KycExchangeFilter>getKycExchangeFilter()Gets the Kyc Exchange filter.org.springframework.boot.web.servlet.FilterRegistrationBean<VciExchangeFilter>getVciExchangeFilter()Gets the VCI Exchange filter.
-
-
-
Method Detail
-
getEkycFilter
@Bean public org.springframework.boot.web.servlet.FilterRegistrationBean<KycAuthenticationFilter> getEkycFilter()
Gets the eKyc filter.- Returns:
- the eKyc filter
-
getKycAuthFilter
@Bean public org.springframework.boot.web.servlet.FilterRegistrationBean<KycAuthFilter> getKycAuthFilter()
Gets the Kyc Auth filter.- Returns:
- the Kyc Auth filter
-
getKycExchangeFilter
@Bean public org.springframework.boot.web.servlet.FilterRegistrationBean<KycExchangeFilter> getKycExchangeFilter()
Gets the Kyc Exchange filter.- Returns:
- the Kyc Exchange filter
-
getKeyBindingFilter
@Bean public org.springframework.boot.web.servlet.FilterRegistrationBean<IdentityKeyBindingFilter> getKeyBindingFilter()
Gets the Kyc Exchange filter.- Returns:
- the Kyc Exchange filter
-
getVciExchangeFilter
@Bean public org.springframework.boot.web.servlet.FilterRegistrationBean<VciExchangeFilter> getVciExchangeFilter()
Gets the VCI Exchange filter.- Returns:
- the VCI Exchange filter
-
-