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

tech.greenfield.vertx.irked.helpers.Redirect Maven / Gradle / Ivy

There is a newer version: 4.5.9.4
Show newest version
package tech.greenfield.vertx.irked.helpers;

import tech.greenfield.vertx.irked.status.Found;

@SuppressWarnings("serial")
public class Redirect extends Found {

	public Redirect(String location) {
		addHeader("Location", location);
	}

	public Redirect(String message, String location) {
		super(message);
		addHeader("Location", location);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy