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
- 
expand
Expand the given URI template with a map of URI variables.- Parameters:
 uriTemplate- the URI templateuriVariables- variable values- Returns:
 - the created URI instance
 
 - 
expand
Expand the given URI template with an array of URI variables.- Parameters:
 uriTemplate- the URI templateuriVariables- variable values- Returns:
 - the created URI instance
 
 
 -