* Revert "[BAEL-3066] Spring Security: Exploring JDBC Authentication (#7441)"
This reverts commit 5aecdeb021.
* Redone Spring-Security-Exploring-JDBC-Authentication code, now witout using submodules
16 lines
382 B
Java
16 lines
382 B
Java
package org.baeldung.voter;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.ImportResource;
|
|
|
|
/**
|
|
* Created by ambrusadrianz on 09/10/2016.
|
|
*/
|
|
// @Configuration
|
|
// @ImportResource({ "classpath:spring-security-custom-voter.xml" })
|
|
public class XmlSecurityConfig {
|
|
public XmlSecurityConfig() {
|
|
super();
|
|
}
|
|
}
|