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

org.hertsstack.http.ParedHttpRequestInfo Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
package org.hertsstack.http;

import java.lang.reflect.Method;

/**
 * Parsed http request info.
 * Parsed uri from definition endpoint. Also, include method info.
 *
 * @author Herts Contributer
 */
class ParedHttpRequestInfo {
    private final String serviceName;
    private final Method hertsMethod;

    ParedHttpRequestInfo(String serviceName, Method hertsMethod) {
        this.serviceName = serviceName;
        this.hertsMethod = hertsMethod;
    }

    public String getServiceName() {
        return serviceName;
    }

    public Method getHertsMethod() {
        return hertsMethod;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy