}
@Path("/musics/download/{m.id}")
@Get
public Download download(Music m) throws FileNotFoundException {
Music music = musicDao.load(m);
File file = musics.getFile(music);
String contentType = "audio/mpeg";
String filename = music.getTitle() + ".mp3";
return new FileDownload(file, contentType, filename);
}