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

io.firebus.adapters.http.HttpHandlerEntry Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package io.firebus.adapters.http;

public class HttpHandlerEntry {
	
	public String path;
	public String method;
	public HttpHandler handler;
	
	public HttpHandlerEntry(String p, String m, HttpHandler h)
	{
		path = p;
		method = m;
		handler = h;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy