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

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

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

import com.appland.appmap.reflect.ReflectiveType;

class StatusLine extends ReflectiveType {
  private static String GET_STATUS_CODE = "getStatusCode";

  StatusLine(Object self) {
    super(self);

    addMethods(GET_STATUS_CODE);
  }

  int getStatusCode() {
    return invokeIntMethod(GET_STATUS_CODE);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy