gate.handler.URLHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gate Show documentation
Show all versions of gate Show documentation
A multipurpose java library
package gate.handler;
import gate.error.AppError;
import java.io.IOException;
import java.io.UncheckedIOException;
import javax.enterprise.context.ApplicationScoped;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@ApplicationScoped
public class URLHandler implements Handler
{
@Override
public void handle(HttpServletRequest request, HttpServletResponse response, Object value) throws AppError
{
try
{
response.sendRedirect(response.encodeRedirectURL(value.toString()));
} catch (IOException ex)
{
throw new UncheckedIOException(ex);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy