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

link.jfire.mvc.binder.impl.HttpSessionBinder Maven / Gradle / Ivy

package link.jfire.mvc.binder.impl;

import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import link.jfire.mvc.binder.AbstractDataBinder;

public class HttpSessionBinder extends AbstractDataBinder
{
    
    public HttpSessionBinder(String paramName)
    {
        super(paramName);
    }
    
    @Override
    public Object binder(HttpServletRequest request, Map map, HttpServletResponse response)
    {
        return request.getSession();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy