org.eclipse.jetty.rewrite.handler.HeaderRule Maven / Gradle / Ivy
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package org.eclipse.jetty.rewrite.handler;
import java.io.IOException;
/**
* Abstract rule that matches against request headers.
*/
public abstract class HeaderRule extends Rule
{
private String _headerName;
private String _headerValue;
public String getHeaderName()
{
return _headerName;
}
public void setHeaderName(String header)
{
_headerName = header;
}
public String getHeaderValue()
{
return _headerValue;
}
/**
* @param headerValue the header value to match against.
* If {@code null}, then the presence of the header is enough to match
*/
public void setHeaderValue(String headerValue)
{
_headerValue = headerValue;
}
@Override
public Handler matchAndApply(Handler input) throws IOException
{
String value = input.getHeaders().get(getHeaderName());
if (value == null)
return null;
String headerValue = getHeaderValue();
if (headerValue == null || headerValue.equals(value))
return apply(input, value);
return null;
}
/**
* Invoked after the header matched the {@code Request} headers to apply the rule's logic.
*
* @param input the input {@code Request} and {@code Handler}
* @param value the header value
* @return the possibly wrapped {@code Request} and {@code Handler}
* @throws IOException if applying the rule failed
*/
protected abstract Handler apply(Handler input, String value) throws IOException;
@Override
public String toString()
{
return "%s[header:%s=%s]".formatted(super.toString(), getHeaderName(), getHeaderValue());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy