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

com.capitalone.dashboard.auth.token.TokenAuthenticationService Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.auth.token;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.security.core.Authentication;

public interface TokenAuthenticationService {

	void addAuthentication(HttpServletResponse response, Authentication authentication);
	Authentication getAuthentication(HttpServletRequest request);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy