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

io.leopard.test.mock.MockRequest Maven / Gradle / Ivy

The newest version!
package io.leopard.test.mock;

import org.springframework.mock.web.MockHttpServletRequest;

public class MockRequest extends MockHttpServletRequest {
	
	public void setSessionAttribute(String name, Object value) {
		this.getSession().setAttribute(name, value);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy