Package kz.sysdesign.app.Entities

Examples of kz.sysdesign.app.Entities.Download


   */
  @RequestMapping(value = "/download", method = RequestMethod.GET)
  public String getFile(@RequestParam("checksum") String checksum, HttpServletResponse response)
  {
    Track track = trackService.getTrackByChecksum(checksum);
    Download download = new Download(track);
    trackService.addDownload(download);

    String link = track.getLink();
    // To avoid any legal issues copyright protected material isn't being kept locally,
    // instead link to file will be replaced by a free sample audio file
View Full Code Here

TOP

Related Classes of kz.sysdesign.app.Entities.Download

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.