org.directwebremoting.util.FakeHttpServletRequest Maven / Gradle / Ivy
package org.directwebremoting.util;
import javax.servlet.http.HttpServletRequest;
/**
* @author Mike Wilson
*/
public interface FakeHttpServletRequest extends HttpServletRequest
{
void addUserRole(String role);
void setContent(byte[] content);
void setContent(String content);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy