Files
yacy_search_server/source/net/yacy/http/ServletRequestHeaderAdapter.java
Michael Peter Christen 554911a88f Migration to Jetty 12.1.11
2026-07-12 12:03:57 +02:00

48 lines
1.7 KiB
Java

/**
* ServletRequestHeaderAdapter
* Copyright 2026 by Michael Peter Christen
* First released 12.07.2026 at https://yacy.net
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program in the file lgpl21.txt
* If not, see <http://www.gnu.org/licenses/>.
*/
package net.yacy.http;
import java.util.Enumeration;
import javax.servlet.http.HttpServletRequest;
import net.yacy.cora.protocol.RequestHeader;
/** Converts servlet request headers into YaCy's mutable header representation. */
public final class ServletRequestHeaderAdapter {
private ServletRequestHeaderAdapter() {
}
public static RequestHeader from(final HttpServletRequest request) {
final RequestHeader result = new RequestHeader();
final Enumeration<String> names = request.getHeaderNames();
while (names.hasMoreElements()) {
final String name = names.nextElement();
final Enumeration<String> values = request.getHeaders(name);
while (values.hasMoreElements()) {
result.add(name, values.nextElement());
}
}
return result;
}
}