Package org.springframework.web.util
Interface UriTemplateHandler
- All Known Subinterfaces:
UriBuilderFactory
- All Known Implementing Classes:
AbstractUriTemplateHandler,DefaultUriBuilderFactory,DefaultUriTemplateHandler
public interface UriTemplateHandler
Defines methods for expanding a URI template with variables.- Since:
- 4.2
- Author:
- Rossen Stoyanchev
- See Also:
RestTemplate.setUriTemplateHandler(UriTemplateHandler)
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URIexpand(String uriTemplate, Object... uriVariables)Expand the given URI template with an array of URI variables.URIexpand(String uriTemplate, Map<String,?> uriVariables)Expand the given URI template with a map of URI variables.