
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);
}