Polish Javadoc for DefaultUriTemplateHandler

master
Sam Brannen 9 years ago
parent 065b7968a3
commit 920eba79f8
  1. 15
      spring-web/src/main/java/org/springframework/web/util/DefaultUriTemplateHandler.java

@ -28,12 +28,13 @@ import org.springframework.util.Assert;
/** /**
* Default implementation of {@link UriTemplateHandler} based on the use of * Default implementation of {@link UriTemplateHandler} based on the use of
* {@link UriComponentsBuilder} to expand and encode variables. * {@link UriComponentsBuilder} for expanding and encoding variables.
* *
* <p>There are also several properties to customize how URI template handling * <p>There are also several properties to customize how URI template handling
* that include a {@link #setBaseUrl baseUrl} to be used as a prefix for all URI * is performed, including a {@link #setBaseUrl baseUrl} to be used as a prefix
* templates and a couple of encoding related options -- {@link #setParsePath * for all URI templates and a couple of encoding related options &mdash;
* parsePath} and {@link #setStrictEncoding strictEncoding} respectively. * {@link #setParsePath parsePath} and {@link #setStrictEncoding strictEncoding}
* respectively.
* *
* @author Rossen Stoyanchev * @author Rossen Stoyanchev
* @since 4.2 * @since 4.2
@ -76,9 +77,9 @@ public class DefaultUriTemplateHandler implements UriTemplateHandler {
/** /**
* Configure default URI variable values to use with every expanded URI * Configure default URI variable values to use with every expanded URI
* template. This default values apply only when expanding with a Map, and * template. These default values apply only when expanding with a Map, and
* not with an array, where the Map supplied to expand can override the * not with an array, where the Map supplied to {@link #expand(String, Map)}
* default values. * can override the default values.
* @param defaultUriVariables the default URI variable values * @param defaultUriVariables the default URI variable values
* @since 4.3 * @since 4.3
*/ */

Loading…
Cancel
Save