com.github.hal4j.resources.NavigationResource 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 java.util.List;
import java.util.Map;
/**
* Resource containing only navigation links and attachments, but no internal model.
*/
public final class NavigationResource extends ResourceSupport {
NavigationResource(Map> _links,
Map> _embedded) {
super(_links, _embedded, null);
}
public NavigationResource(Map> _links,
Map> _embedded,
BindingContext context) {
super(_links, _embedded, context);
}
}