package ite.librarymaster.application.configuration;

import org.springframework.context.annotation.Configuration;

@Configuration
// TODO 3: Enable Web Security for this application
//         The default user and password is configured in application.properties
public class SecurityConfig {

    // TODO 5: Configure Security filter chain and add custom login page and role based
    //         access control to application pages.

    // TODO 4: Configure Authentication Manager to use LDAP provider

}
