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

fr.smallcrew.security.util.SessionUtils Maven / Gradle / Ivy

Go to download

Foundation of all smallcrew's projects needing authenticated users and role management

The newest version!
package fr.smallcrew.security.util;

import fr.smallcrew.security.domain.DomainUser;
import fr.smallcrew.security.web.AuthenticatedUser;
import org.springframework.security.core.context.SecurityContextHolder;

public class SessionUtils {
  public static DomainUser getDomainUser() {
    return ((AuthenticatedUser) SecurityContextHolder.getContext().getAuthentication().getPrincipal()).getUser();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy