io.firebus.adapters.http.HttpHandlerEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebus-http Show documentation
Show all versions of firebus-http Show documentation
Firebus http gateway adapter
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