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

com.appland.appmap.reflect.ServletRequestEvent Maven / Gradle / Ivy

There is a newer version: 1.27.1
Show newest version
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));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy