![JAR search and dependency download from the Maven repository](/logo.png)
com.payneteasy.superfly.security.processor.IdAuthenticationPostProcessor Maven / Gradle / Ivy
package com.payneteasy.superfly.security.processor;
import org.springframework.security.core.Authentication;
/**
* AuthenticationPostProcessor implementation which just returns its argument.
*
* @author rpuch
*/
public class IdAuthenticationPostProcessor implements AuthenticationPostProcessor {
@Override
public Authentication postProcess(Authentication auth) {
return auth;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy