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

prompto.internet.HttpHeader Maven / Gradle / Ivy

There is a newer version: 0.1.57
Show newest version
package prompto.internet;

public class HttpHeader {

	String name;
	String text;
	
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getText() {
		return text;
	}
	public void setText(String text) {
		this.text = text;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy