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

com.icthh.xm.commons.security.spring.config.XmAuthenticationContextConfiguration Maven / Gradle / Ivy

There is a newer version: 4.0.17
Show newest version
package com.icthh.xm.commons.security.spring.config;

import com.icthh.xm.commons.security.XmAuthenticationContextHolder;
import com.icthh.xm.commons.security.internal.SpringSecurityXmAuthenticationContextHolder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * The {@link XmAuthenticationContextConfiguration} class.
 */
@Configuration
public class XmAuthenticationContextConfiguration {

    /**
     * XmAuthenticationContextHolder bean configure.
     * @return XmAuthenticationContextHolder bean instance
     */
    @Bean
    public XmAuthenticationContextHolder xmAuthenticationContextHolder() {
        return new SpringSecurityXmAuthenticationContextHolder();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy