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

com.minlia.rocket.security.authentication.service.DummyAuthenticationService Maven / Gradle / Ivy

There is a newer version: 2.0.4.1.RELEASE
Show newest version
package com.minlia.rocket.security.authentication.service;

import java.util.ArrayList;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.Authentication;

public class DummyAuthenticationService implements AuthenticationService {

  @Override
  public Authentication authentication(Authentication authentication) {
    return new UsernamePasswordAuthenticationToken(null, null, new ArrayList<>());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy