Uses of Interface
org.springframework.hateoas.server.EntityLinks
Packages that use EntityLinks
-
Uses of EntityLinks in org.springframework.hateoas.server.core
Classes in org.springframework.hateoas.server.core that implement EntityLinksModifier and TypeClassDescriptionclass
Implementation base class to delegate the higher level methods ofEntityLinks
by delegating to the more fine grained ones to reduce the implementation effort for actual implementation classes.class
EntityLinks
implementation which assumes a certain URI mapping structure: A class-levelExposesResourceFor
annotation to declare that the annotated controller exposes collection and item resources for. AnRequestMapping
annotation to form the base URI of the collection resource. A controller method with a mapping annotation to actually handle at least one HTTP method. A controller method that maps a subordinate resource taking a path variable to identify an item resource.class
EntityLinks
implementation that delegates to theEntityLinks
instances registered in thePluginRegistry
given on instance creation.Constructor parameters in org.springframework.hateoas.server.core with type arguments of type EntityLinksModifierConstructorDescriptionDelegatingEntityLinks
(org.springframework.plugin.core.PluginRegistry<EntityLinks, Class<?>> plugins) Creates a newDelegatingEntityLinks
using the givenPluginRegistry
.