com.github.hal4j.resources.NavigationResourceBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hal4j-api Show documentation
Show all versions of hal4j-api Show documentation
HAL API specification for Java
package com.github.hal4j.resources;
import com.github.hal4j.resources.curie.CurieResolver;
public class NavigationResourceBuilder extends ResourceBuilderSupport {
protected NavigationResourceBuilder(CurieResolver resolver) {
super(resolver);
}
@Override
protected NavigationResourceBuilder _this() {
return this;
}
@Override
public NavigationResource build() {
return new NavigationResource(_links, _embedded, context());
}
}