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

org.springframework.social.connect.web.SessionStrategy Maven / Gradle / Ivy

The newest version!
package org.springframework.social.connect.web;

import org.springframework.web.context.request.RequestAttributes;

public interface SessionStrategy {

	void setAttribute(RequestAttributes request, String name, Object value);
	
	Object getAttribute(RequestAttributes request, String name);
	
	void removeAttribute(RequestAttributes request, String name);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy