Room.java (apache-openmeetings-6.1.0-src) | : | Room.java (apache-openmeetings-6.2.0-src) | ||
---|---|---|---|---|
skipping to change at line 633 | skipping to change at line 633 | |||
} | } | |||
public List<RoomFile> getFiles() { | public List<RoomFile> getFiles() { | |||
return files; | return files; | |||
} | } | |||
public void setFiles(List<RoomFile> files) { | public void setFiles(List<RoomFile> files) { | |||
this.files = files; | this.files = files; | |||
} | } | |||
public boolean isOwner(Long userId) { | ||||
return ownerId != null && ownerId.equals(userId); | ||||
} | ||||
@Override | @Override | |||
public String toString() { | public String toString() { | |||
return "Room [id=" + id + ", name=" + name + ", type=" + type + " ]"; | return "Room [id=" + id + ", name=" + name + ", type=" + type + " ]"; | |||
} | } | |||
} | } | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added |