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

com.yahoo.elide.utils.HeaderProcessor Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2020, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.utils;

import java.util.List;
import java.util.Map;

/**
 * Processes HTTP headers.
 */
@FunctionalInterface
public interface HeaderProcessor {
    /**
     * Processes headers.
     *
     * @param headers the input headers
     * @return the processed headers
     */
    Map> process(Map> headers);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy