Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@eugenp
Created November 12, 2011 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eugenp/1361032 to your computer and use it in GitHub Desktop.
Save eugenp/1361032 to your computer and use it in GitHub Desktop.
REST Service Discoverability with Spring, part 5 - REST URI Utilities
public class RESTURIUtil{
public static String createLinkHeader( final String uri, final String rel ){
return "<" + uri + ">; rel=\"" + rel + "\"";
}
}
@eugenp
Copy link
Author

eugenp commented Nov 19, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment