package org.kalipo.security; import org.kalipo.config.Constants; import org.springframework.data.domain.AuditorAware; import org.springframework.stereotype.Component; /** * Implementation of AuditorAware based on Spring Security. */ @Component public class SpringSecurityAuditorAware implements AuditorAware<String> { public String getCurrentAuditor() { String userName = SecurityUtils.getCurrentLogin(); return (userName != null ? userName : Constants.SYSTEM_ACCOUNT); } }