com.github.osvaldopina.linkbuilder.methodtemplate.urigenerator.AnnotatedMethodUriGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linkbuilder Show documentation
Show all versions of linkbuilder Show documentation
Link builder for Spring Hateoas projects.
package com.github.osvaldopina.linkbuilder.methodtemplate.urigenerator;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.List;
public interface AnnotatedMethodUriGenerator {
boolean isAnnotated(Method method);
List extends Annotation> getLinksAnnotation(Method method);
Annotation getSelfLinkAnnotaiton(Method method);
String generate(Method method, Annotation annotation, Object payLoad, Object[] params);
}