BAEL-2958: Update elasticsearch demo project

This commit is contained in:
Michael Pratt
2019-06-12 13:00:24 +00:00
parent 83c500f977
commit e833ede836
4 changed files with 31 additions and 29 deletions

View File

@@ -6,7 +6,7 @@ public class Employee {
String name;
String title;
List<String> skills;
int years_of_service;
int yearsOfService;
public String getName() {
return name;
@@ -32,11 +32,11 @@ public class Employee {
this.skills = skills;
}
public int getYears_of_service() {
return years_of_service;
public int getYearsOfService() {
return yearsOfService;
}
public void setYears_of_service(int years_of_service) {
this.years_of_service = years_of_service;
public void setYearsOfService(int yearsOfService) {
this.yearsOfService = yearsOfService;
}
}