org.hertsstack.http.ParedHttpRequestInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of herts-http Show documentation
Show all versions of herts-http Show documentation
Herts real time framework for Http
package org.hertsstack.http;
import java.lang.reflect.Method;
/**
* Parsed http request info.
* Parsed uri from definition endpoint. Also, include method info.
*
* @author Herts Contributer
*/
class ParedHttpRequestInfo {
private final String serviceName;
private final Method hertsMethod;
ParedHttpRequestInfo(String serviceName, Method hertsMethod) {
this.serviceName = serviceName;
this.hertsMethod = hertsMethod;
}
public String getServiceName() {
return serviceName;
}
public Method getHertsMethod() {
return hertsMethod;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy