Merge pull request 'Added type into AssignmentDetailedResponse.java' (#47) from fixed-adding-type into master
Reviewed-on: http://git.plannaplan.pl/filipizydorczyk/backend/pulls/47
This commit is contained in:
commit
5ec41fa5d0
@ -13,6 +13,7 @@ public class AssignmentDetailedResponse {
|
|||||||
private String time;
|
private String time;
|
||||||
private String endTime;
|
private String endTime;
|
||||||
private String lecturer;
|
private String lecturer;
|
||||||
|
private String type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param assignment Assignment instance to map
|
* @param assignment Assignment instance to map
|
||||||
@ -25,6 +26,14 @@ public class AssignmentDetailedResponse {
|
|||||||
this.time = group.getTimeString();
|
this.time = group.getTimeString();
|
||||||
this.endTime = group.getEndTimeString();
|
this.endTime = group.getEndTimeString();
|
||||||
this.lecturer = group.getLecturer().toString();
|
this.lecturer = group.getLecturer().toString();
|
||||||
|
this.type = group.getType().toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return type of the lecture
|
||||||
|
*/
|
||||||
|
public String getType() {
|
||||||
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user