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

org.mockserver.model.Header Maven / Gradle / Ivy

There is a newer version: 5.15.0
Show newest version
package org.mockserver.model;

import java.util.List;

/**
 * @author jamesdbloom
 */
public class Header extends KeyToMultiValue {

    public Header(String name, String... value) {
        super(name, value);
    }

    public Header(String name, List value) {
        super(name, value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy