Closes gh-5714
This commit is contained in:
Johnny Lim
2016-04-17 13:36:47 +09:00
committed by Stephane Nicoll
parent 15dee60049
commit 6d48ee9593
23 changed files with 38 additions and 38 deletions

View File

@@ -50,7 +50,7 @@ public class User {
this.vin = vin;
}
protected Long getId() {
public Long getId() {
return this.id;
}

View File

@@ -19,7 +19,7 @@ package sample.test.domain;
import org.springframework.data.repository.Repository;
/**
* Domain repository for {@link User}
* Domain repository for {@link User}.
*
* @author Phillip Webb
*/

View File

@@ -29,7 +29,7 @@ import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
/**
* Controller to return vehicle information for a given {@link User}
* Controller to return vehicle information for a given {@link User}.
*
* @author Phillip Webb
*/