org.mockserver.model.Header Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockserver-core Show documentation
Show all versions of mockserver-core Show documentation
Functionality used by all MockServer modules for matching and expectations
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