com.appland.appmap.reflect.HttpMessageDelegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appmap-agent Show documentation
Show all versions of appmap-agent Show documentation
Inspect and record the execution of Java for use with App Land
The newest version!
package com.appland.appmap.reflect;
import java.lang.reflect.Method;
class HttpMessageDelegate extends ReflectiveType {
final Method fnGetHeader;
final Method fnGetHeaderNames;
public HttpMessageDelegate(Object self) {
super(self);
fnGetHeader = getMethod("getHeader", String.class);
fnGetHeaderNames = getMethod("getHeaderNames");
}
}