Package br.com.caelum.vraptor.musicjungle.model

Examples of br.com.caelum.vraptor.musicjungle.model.Music


    }
 
  @Path("/musics/download/{m.id}")
  @Get
  public Download download(Music m){
    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);
  }
View Full Code Here


    }
 
  @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);
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.musicjungle.model.Music

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.