Interface ResourceMethodResolver


public interface ResourceMethodResolver
Contract for matching incoming HTTP requests with appropriate Resource Methods (Java methods to invoke to handle requests).

A Resource Method is a Java Method with an HTTP method annotation applied, e.g. GET, POST, ServerSentEventSource, ...

Standard threadsafe implementations can be acquired via these factory methods:

It is likely that one or more of the above implementations is sufficient for your application and test suite.

However, should a custom implementation be necessary, documentation is available at https://www.soklet.com/docs/request-handling#resource-method-resolution.

Author:
Mark Allen