File tree 1 file changed +5
-3
lines changed
spring-web/src/main/java/org/springframework/web/util
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2017 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
30
30
31
31
/**
32
32
* 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.
34
34
*
35
35
* <p>See {@link #expand(Map)}, {@link #expand(Object[])}, and {@link #match(String)}
36
36
* for example usages.
37
37
*
38
+ * <p>This class is designed to be thread-safe and reusable, allowing for any number
39
+ * of expand or match calls.
40
+ *
38
41
* @author Arjen Poutsma
39
42
* @author Juergen Hoeller
40
43
* @author Rossen Stoyanchev
41
44
* @since 3.0
42
- * @see <a href="http://bitworking.org/projects/URI-Templates/">URI Templates</a>
43
45
*/
44
46
@ SuppressWarnings ("serial" )
45
47
public class UriTemplate implements Serializable {
You can’t perform that action at this time.
0 commit comments