com.appland.appmap.reflect.ServletRequestEvent 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
package com.appland.appmap.reflect;
public class ServletRequestEvent extends ReflectiveType {
private static String GET_SERVLET_REQUEST = "getServletRequest";
public ServletRequestEvent(Object self) {
super(self);
addMethods(GET_SERVLET_REQUEST);
}
public HttpServletRequest getServletRequest() {
return new HttpServletRequest(invokeObjectMethod(GET_SERVLET_REQUEST));
}
}