sort collabs by id

This commit is contained in:
Claudio Barril
2015-04-11 16:09:55 -03:00
parent 74a05cb7db
commit d73ee3b902
2 changed files with 7 additions and 1 deletions

View File

@@ -37,10 +37,12 @@ import javax.xml.bind.annotation.XmlRootElement;
isGetterVisibility = JsonAutoDetect.Visibility.PUBLIC_ONLY)
public class RestCollaboration {
private long id;
private String email;
private String role;
public RestCollaboration(@NotNull Collaboration collaboration) {
this.id = collaboration.getId();
this.email = collaboration.getCollaborator().getEmail();
this.role = collaboration.getRole().getLabel();
}
@@ -59,6 +61,10 @@ public class RestCollaboration {
}
public long getId() {
return id;
}
public String getRole() {
return role;
}