- Add custom message support
This commit is contained in:
@@ -21,6 +21,7 @@ import java.util.*;
|
||||
public class RestCollaborationList {
|
||||
|
||||
private List<RestCollaboration> collaborations;
|
||||
private String message;
|
||||
|
||||
public RestCollaborationList() {
|
||||
collaborations = new ArrayList<RestCollaboration>();
|
||||
@@ -46,4 +47,12 @@ public class RestCollaborationList {
|
||||
public void setCollaborations(@NotNull List<RestCollaboration> collaborations) {
|
||||
this.collaborations = collaborations;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user