File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
spring-web/src/main/java/org/springframework/web/util Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2002-2016 the original author or authors.
2+ * Copyright 2002-2017 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
3030
3131/**
3232 * Represents a URI template. A URI template is a URI-like String that contains variables
33- * enclosed by braces ({@code {}}), which can be expanded to produce an actual URI.
33+ * enclosed by braces ({@code {}}) which can be expanded to produce an actual URI.
3434 *
3535 * <p>See {@link #expand(Map)}, {@link #expand(Object[])}, and {@link #match(String)}
3636 * for example usages.
3737 *
38+ * <p>This class is designed to be thread-safe and reusable, allowing for any number
39+ * of expand or match calls.
40+ *
3841 * @author Arjen Poutsma
3942 * @author Juergen Hoeller
4043 * @author Rossen Stoyanchev
4144 * @since 3.0
42- * @see <a href="http://bitworking.org/projects/URI-Templates/">URI Templates</a>
4345 */
4446@ SuppressWarnings ("serial" )
4547public class UriTemplate implements Serializable {
You can’t perform that action at this time.
0 commit comments