SPR-5973: javadoc

master
Arjen Poutsma 13 years ago
parent 420d11911b
commit 99f68d3620
  1. 10
      org.springframework.web/src/main/java/org/springframework/web/util/UriBuilder.java

@ -42,16 +42,6 @@ import org.springframework.util.StringUtils;
* *
* <p>Most of the URI component methods accept URI template variables (i.e. {@code "{foo}"}), which are expanded by * <p>Most of the URI component methods accept URI template variables (i.e. {@code "{foo}"}), which are expanded by
* calling {@code build}. * calling {@code build}.
* one , are allowed in most components of a URI but their value is
* restricted to a particular component. E.g.
* <blockquote><code>UriBuilder.fromPath("{arg1}").build("foo#bar");</code></blockquote>
* would result in encoding of the '#' such that the resulting URI is
* "foo%23bar". To create a URI "foo#bar" use
* <blockquote><code>UriBuilder.fromPath("{arg1}").fragment("{arg2}").build("foo", "bar")</code></blockquote>
* instead. URI template names and delimiters are never encoded but their
* values are encoded when a URI is built.
* Template parameter regular expressions are ignored when building a URI, i.e.
* no validation is performed.
* *
* <p>Inspired by {@link javax.ws.rs.core.UriBuilder}. * <p>Inspired by {@link javax.ws.rs.core.UriBuilder}.
* *

Loading…
Cancel
Save