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

org.analogweb.InvocationMetadata Maven / Gradle / Ivy

package org.analogweb;

import java.lang.reflect.Method;

/**
 * Metadata of {@link Invocation}.
 *
 * @author snowgoose
 */
public interface InvocationMetadata {

    /**
     * Get invocation {@link Class}.
     *
     * @return {@link Class}
     */
    Class getInvocationClass();

    /**
     * Get name of the invocation method.
     *
     * @return name of the invocation method.
     */
    String getMethodName();

    Class[] getArgumentTypes();

    RequestPathMetadata getDefinedPath();

    /**
     * Resolve {@link Method} by reflection.
     *
     * @return {@link Method}
     */
    Method resolveMethod();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy