List of usage examples for javax.servlet.http HttpServletResponse SC_MOVED_PERMANENTLY
int SC_MOVED_PERMANENTLY
To view the source code for javax.servlet.http HttpServletResponse SC_MOVED_PERMANENTLY.
Click Source Link
From source file:org.kuali.test.utils.Utils.java
public static boolean isRedirectResponse(int status) { return ((status == HttpServletResponse.SC_MOVED_TEMPORARILY) || (status == HttpServletResponse.SC_MOVED_PERMANENTLY) || (status == HttpServletResponse.SC_SEE_OTHER)); }