All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.khasanof.config.feature.PostFindInterceptorConfiguration Maven / Gradle / Ivy

The newest version!
package org.khasanof.config.feature;

import org.khasanof.service.interceptor.invoker.DefaultPostFindInvokerInterceptorService;
import org.khasanof.service.interceptor.invoker.PostFindInvokerInterceptorService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @author Nurislom
 * @see org.khasanof.config.feature
 * @since 2/28/2024 11:25 PM
 */
@Configuration
public class PostFindInterceptorConfiguration {

    /**
     *
     * @return {@link PostFindInvokerInterceptorService} bean
     */
    @Bean
    public PostFindInvokerInterceptorService invokerInterceptorService() {
        return new DefaultPostFindInvokerInterceptorService();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy