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

com.jd.httpservice.agent.CustomHeader Maven / Gradle / Ivy

There is a newer version: 2.1.4.RELEASE
Show newest version
package com.jd.httpservice.agent;

public class CustomHeader implements RequestHeader{
	
	private String name;
	
	private String value;
	
	public CustomHeader(String name, String value) {
		this.name = name;
		this.value = value;
	}
	
	@Override
	public String getName() {
		return name;
	}

	@Override
	public String getValue() {
		return value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy