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

org.openforis.commons.web.HttpResponses Maven / Gradle / Ivy

The newest version!
package org.openforis.commons.web;

import static javax.servlet.http.HttpServletResponse.SC_NO_CONTENT;

import javax.servlet.http.HttpServletResponse;

/**
 * 
 * @author S. Ricci
 *
 */
public class HttpResponses {

	public static void setNoContentStatus(HttpServletResponse response) {
		response.setStatus(SC_NO_CONTENT);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy