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

com.sdklite.sphere.restful.InvocationTarget Maven / Gradle / Ivy

package com.sdklite.sphere.restful;

/**
 * Represent the target of RESTful service
 *
 * @author johnsonlee
 * @since 1.0.0
 */
public class InvocationTarget {

    public final String url;

    public final String method;

    public InvocationTarget(final String url) {
        this(url, "GET");
    }

    public InvocationTarget(final String url, final String method) {
        this.url = url;
        this.method = method;
    }

    @Override
    public String toString() {
        return this.method + " " + this.url;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy