avivmu

Results 2 issues of avivmu

Updated code samples + class names in README to match the code. We might want to edit my [merge explanation](https://github.com/spring-projects/spring-hateoas-examples/compare/master...avivmu:master#diff-4adab4bd6582447599943bc79ef3e1229bcf60080bb823168b3413a56a49be1aR211) with more details and why it failed before.

The current code has the following method for splitting name to two: ```java public void setName(String wholeName) { String[] parts = wholeName.split(" "); this.firstName = parts[0]; if (parts.length > 1)...