com.ohadr.authentication.token.interfaces.UsernameTranslationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auth-common Show documentation
Show all versions of auth-common Show documentation
Common code for OAuth2 implementations using spring-security-oauth2
package com.ohadr.authentication.token.interfaces;
import org.springframework.security.core.Authentication;
public interface UsernameTranslationService
{
public String getUsernameFromAuthentication(Authentication authentication);
}