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

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

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

import com.appland.appmap.reflect.ReflectiveType;

class RequestLine extends ReflectiveType {
  private static String GET_METHOD = "getMethod";
  private static String GET_URI = "getUri";

  RequestLine(Object self) {
    super(self);

    addMethods(GET_METHOD, GET_URI);
  }

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

  String getUri() {
    return invokeStringMethod(GET_URI);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy