Refactored the main controller to use regular Spring MVC conventions.

This commit is contained in:
Jon Brisbin
2012-04-09 09:01:18 -05:00
parent c53d092ee0
commit 53951a928f
11 changed files with 703 additions and 635 deletions

View File

@@ -10,6 +10,9 @@ public class SimpleLink implements Link {
private String rel;
private URI href;
public SimpleLink() {
}
public SimpleLink(String rel, URI href) {
this.rel = rel;
this.href = href;