com.github.tcurrie.rest.factory.service.RequestDelegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest.factory Show documentation
Show all versions of rest.factory Show documentation
Simple rest client-server factory, you give it a url, it does the rest!
package com.github.tcurrie.rest.factory.service;
import javax.servlet.http.HttpServletRequest;
import java.util.List;
interface RequestDelegate {
List getHandlers(HttpServletRequest request);
}