GH-2318 - Polish Javadoc.

This commit is contained in:
Oliver Drotbohm
2025-04-17 17:17:00 +02:00
parent 41c43cd314
commit c2e191946c
3 changed files with 8 additions and 6 deletions

View File

@@ -28,8 +28,9 @@ import org.springframework.hateoas.support.WebStack;
import org.springframework.http.MediaType;
/**
* Activates hypermedia support in the {@link ApplicationContext}. Will register infrastructure beans to support all
* appropriate web stacks based on selected {@link HypermediaMappingInformation}-type as well as the classpath.
* Activates hypermedia support in the {@link org.springframework.context.ApplicationContext}. Will register
* infrastructure beans to support all appropriate web stacks based on selected
* {@link HypermediaMappingInformation}-type as well as the classpath.
*
* @author Oliver Gierke
* @author Greg Turnquist
@@ -50,7 +51,8 @@ public @interface EnableHypermediaSupport {
/**
* Configures which {@link WebStack}s we're supposed to enable support for. By default we're activating it for all
* available ones if they happen to be in use. Configure this explicitly in case you're using WebFlux components like
* {@link WebClient} but don't want to use hypermedia operations with it.
* {@link org.springframework.web.reactive.function.client.WebClient} but don't want to use hypermedia operations with
* it.
*
* @return
*/

View File

@@ -271,12 +271,12 @@ public class HalConfiguration {
public enum RenderSingleLinks {
/**
* A single {@link Link} is rendered as a JSON object.
* A single {@link org.springframework.hateoas.Link} is rendered as a JSON object.
*/
AS_SINGLE,
/**
* A single {@link Link} is rendered as a JSON Array.
* A single {@link org.springframework.hateoas.Link} is rendered as a JSON Array.
*/
AS_ARRAY
}

View File

@@ -24,7 +24,7 @@ import org.springframework.hateoas.client.JsonPathLinkDiscoverer;
import org.springframework.http.MediaType;
/**
* {@link LinkDiscoverer} implementation based on HAL link structure.
* {@link org.springframework.hateoas.client.LinkDiscoverer} implementation based on HAL link structure.
*
* @author Oliver Gierke
* @author Greg Turnquist