File tree Expand file tree Collapse file tree
src/main/java/eu/openanalytics/containerproxy/auth/impl Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 */
2121package eu .openanalytics .containerproxy .auth .impl ;
2222
23+ import org .slf4j .Logger ;
24+ import org .slf4j .LoggerFactory ;
2325import org .springframework .security .config .annotation .authentication .builders .AuthenticationManagerBuilder ;
2426import org .springframework .security .config .annotation .web .builders .HttpSecurity ;
2527import org .springframework .security .config .annotation .web .configurers .ExpressionUrlAuthorizationConfigurer .AuthorizedUrl ;
3335public class SocialAuthenticationBackend implements IAuthenticationBackend {
3436
3537 public static final String NAME = "social" ;
38+
39+ public SocialAuthenticationBackend () {
40+ Logger logger = LoggerFactory .getLogger (getClass ());
41+ logger .warn ("WARNING: ###" );
42+ logger .warn ("WARNING: ###" );
43+ logger .warn ("WARNING: Social authentication is deprecated and will be removed in the next version (3.1.0)!" );
44+ logger .warn ("WARNING: ###" );
45+ logger .warn ("WARNING: ###" );
46+ }
3647
3748 @ Override
3849 public String getName () {
You can’t perform that action at this time.
0 commit comments