Merge pull request 'gr_nr + sym' (#51) from new-response-fields into master
Reviewed-on: http://git.plannaplan.pl/filipizydorczyk/backend/pulls/51
This commit is contained in:
commit
e688f8b71d
@ -42,6 +42,8 @@ public class GroupDefaultResponse {
|
||||
@ApiModelProperty(value = "Used only in resposnes realted to user assignments. For example in /api/v1/users/schedule.")
|
||||
private Boolean isAccepted;
|
||||
|
||||
private Integer grNr;
|
||||
|
||||
/**
|
||||
* creat new entity
|
||||
*
|
||||
@ -55,6 +57,14 @@ public class GroupDefaultResponse {
|
||||
this.lecturer = group.getLecturer() != null ? group.getLecturer().toString() : "";
|
||||
this.room = group.getRoom() != null ? group.getRoom() : "";
|
||||
this.type = group.getType() != null ? GroupType.isLectureOrClass(group.getType()) : null;
|
||||
this.grNr = group.getGrNr() != null ? group.getGrNr() : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return group number
|
||||
*/
|
||||
public Integer getGrNr() {
|
||||
return grNr;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -9,6 +9,7 @@ public abstract class CoursesResponse {
|
||||
|
||||
private Long id;
|
||||
private String name;
|
||||
private String symbol;
|
||||
|
||||
/**
|
||||
* create instance
|
||||
@ -18,6 +19,7 @@ public abstract class CoursesResponse {
|
||||
public CoursesResponse(Course course) {
|
||||
this.id = course.getId() != null ? course.getId() : null;
|
||||
this.name = course.getName() != null ? course.getName() : "";
|
||||
this.symbol = course.getSymbol() != null ? course.getSymbol() : "";
|
||||
}
|
||||
|
||||
/**
|
||||
@ -27,6 +29,13 @@ public abstract class CoursesResponse {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return course symbol
|
||||
*/
|
||||
public String getSymbol() {
|
||||
return symbol;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return db id
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user