Class Lesson
- java.lang.Object
-
- org.apache.camel.quarkus.component.optaplanner.it.domain.Lesson
-
public class Lesson extends Object
adapted from optaplanner quarkus quickstart : https://github.com/kiegroup/optaplanner-quickstarts/tree/stable/use-cases/school-timetabling
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetId()RoomgetRoom()StringgetStudentGroup()StringgetSubject()StringgetTeacher()TimeslotgetTimeslot()voidsetRoom(Room room)voidsetTimeslot(Timeslot timeslot)StringtoString()
-
-
-
Method Detail
-
getId
public Long getId()
-
getSubject
public String getSubject()
-
getTeacher
public String getTeacher()
-
getStudentGroup
public String getStudentGroup()
-
getTimeslot
public Timeslot getTimeslot()
-
setTimeslot
public void setTimeslot(Timeslot timeslot)
-
getRoom
public Room getRoom()
-
setRoom
public void setRoom(Room room)
-
-