BAEL-3059: Update Play Framework (#7674)

* Implementation of Introduction to Play Framework in Java

* Implementation of Introduction to Play Framework in Java

* Implementation of Introduction to Play Framework in Java

* Implementation of the tutorial for Introduction to Play Framework.

* Updated code for Play Routing to 2.7.3

* Updated code for Play Routing to 2.7.3

* Initial Commit

* Added request object to create end point

* Finished implementing student-api

* Finished implementing student-api

* Implementation of the tutorial for Introduction to Play Framework.

* Updated test names

* Removed Lombok dependency

* Corrected isSuccessful spelling and removed the +1 on student ids
This commit is contained in:
Alfred Samanga
2019-09-06 16:39:18 +02:00
committed by KevinGilmore
parent 0d648321dc
commit 5bce8b22a1
67 changed files with 571 additions and 3303 deletions
@@ -0,0 +1,50 @@
package model;
public class Student {
private String firstName;
private String lastName;
private int age;
private int id;
public Student() {
}
public Student(String firstName, String lastName, int age, int id) {
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
this.id = id;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}