Links per design are URI-template aware, because we have a build(Object...) method.
I (seem to) be able to create links from resources and methods that have templates in their @Path
I can construct a Link from a URI template by calling: Link.fromUri( myUriBuilder.toTemplate() );
However, the latter requires an internal URI parse (because the template is a string).
Should we not have Link.fromUriBuilder( myUriBuilder) to spare the parsing of the template from string?
Jan