Example usage for java.lang.reflect Method name

List of usage examples for java.lang.reflect Method name

Introduction

In this page you can find the example usage for java.lang.reflect Method name.

Prototype

String name

To view the source code for java.lang.reflect Method name.

Click Source Link

Usage

From source file:com.lambdasoup.panda.Panda.java

public Map<String, String> accessDetails(Method method, String url) {
    Map<String, String> parameters = PandaHttp.signedParams(method.name(), url, new HashMap<String, String>(),
            this.properties);
    parameters.put("api_host", this.properties.getProperty("api-host"));

    return parameters;
}