Skip to content

Commit c2e1919

Browse files
committed
GH-2318 - Polish Javadoc.
1 parent 41c43cd commit c2e1919

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/main/java/org/springframework/hateoas/config/EnableHypermediaSupport.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@
2828
import org.springframework.http.MediaType;
2929

3030
/**
31-
* Activates hypermedia support in the {@link ApplicationContext}. Will register infrastructure beans to support all
32-
* appropriate web stacks based on selected {@link HypermediaMappingInformation}-type as well as the classpath.
31+
* Activates hypermedia support in the {@link org.springframework.context.ApplicationContext}. Will register
32+
* infrastructure beans to support all appropriate web stacks based on selected
33+
* {@link HypermediaMappingInformation}-type as well as the classpath.
3334
*
3435
* @author Oliver Gierke
3536
* @author Greg Turnquist
@@ -50,7 +51,8 @@
5051
/**
5152
* Configures which {@link WebStack}s we're supposed to enable support for. By default we're activating it for all
5253
* available ones if they happen to be in use. Configure this explicitly in case you're using WebFlux components like
53-
* {@link WebClient} but don't want to use hypermedia operations with it.
54+
* {@link org.springframework.web.reactive.function.client.WebClient} but don't want to use hypermedia operations with
55+
* it.
5456
*
5557
* @return
5658
*/

src/main/java/org/springframework/hateoas/mediatype/hal/HalConfiguration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,12 @@ List<MediaType> getMediaTypes() {
271271
public enum RenderSingleLinks {
272272

273273
/**
274-
* A single {@link Link} is rendered as a JSON object.
274+
* A single {@link org.springframework.hateoas.Link} is rendered as a JSON object.
275275
*/
276276
AS_SINGLE,
277277

278278
/**
279-
* A single {@link Link} is rendered as a JSON Array.
279+
* A single {@link org.springframework.hateoas.Link} is rendered as a JSON Array.
280280
*/
281281
AS_ARRAY
282282
}

src/main/java/org/springframework/hateoas/mediatype/hal/HalLinkDiscoverer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import org.springframework.http.MediaType;
2525

2626
/**
27-
* {@link LinkDiscoverer} implementation based on HAL link structure.
27+
* {@link org.springframework.hateoas.client.LinkDiscoverer} implementation based on HAL link structure.
2828
*
2929
* @author Oliver Gierke
3030
* @author Greg Turnquist

0 commit comments

Comments
 (0)