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

com.appland.appmap.reflect.apache.HttpUriRequest Maven / Gradle / Ivy

The newest version!
package com.appland.appmap.reflect.apache;

import java.net.URI;

import com.appland.appmap.reflect.ReflectiveType;

public class HttpUriRequest extends ReflectiveType {
  private String GET_METHOD = "getMethod";
  private String GET_URI = "getURI";

  public HttpUriRequest(Object self) {
    super(self);
    addMethods(GET_METHOD, GET_URI);
  }

  public String getMethod() {
    return invokeStringMethod(GET_METHOD);
  }

  public URI getURI() {
    return (URI)invokeObjectMethod(GET_URI);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy