2014-07-22 18:02:11 -05:00
|
|
|
package org.baeldung.spring;
|
|
|
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.context.annotation.ImportResource;
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
@ImportResource({ "classpath:webSecurityConfig.xml" })
|
|
|
|
public class SecSecurityConfig {
|
|
|
|
|
|
|
|
public SecSecurityConfig() {
|
|
|
|
super();
|
|
|
|
}
|
2014-12-15 18:33:30 -05:00
|
|
|
|
2014-07-22 18:02:11 -05:00
|
|
|
}
|