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

io.bitsensor.plugins.java.http.configuration.BitSensorMethodInvocation Maven / Gradle / Ivy

The newest version!
package io.bitsensor.plugins.java.http.configuration;

import org.aopalliance.intercept.MethodInvocation;

import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Method;

public abstract class BitSensorMethodInvocation implements MethodInvocation {

    @Override
    public Method getMethod() {
        return null;
    }

    @Override
    public Object[] getArguments() {
        return new Object[0];
    }

    @Override
    public Object getThis() {
        return null;
    }

    @Override
    public AccessibleObject getStaticPart() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy