Package org.springframework.web.util
Interface UriTemplateHandler
- All Known Subinterfaces:
- UriBuilderFactory
- All Known Implementing Classes:
- DefaultUriBuilderFactory
public interface UriTemplateHandler
Defines methods for expanding a URI template with variables.
- Since:
- 4.2
- Author:
- Rossen Stoyanchev
- See Also:
- 
Method Summary
- 
Method Details- 
expandExpand the given URI template with a map of URI variables.- Parameters:
- uriTemplate- the URI template
- uriVariables- variable values
- Returns:
- the created URI instance
 
- 
expandExpand the given URI template with an array of URI variables.- Parameters:
- uriTemplate- the URI template
- uriVariables- variable values
- Returns:
- the created URI instance
 
 
-