Package org.yaac.shared.file

Examples of org.yaac.shared.file.FileDownloadPath


    {
      SortableColumn<BlobInfoDTO, SafeHtml> column =
        new SortableColumn<BlobInfoDTO, SafeHtml>(new SafeHtmlCell()) {
        @Override
        public SafeHtml getValue(BlobInfoDTO o) {       
          FileDownloadPath path = AutoBeanUtil.blobDownloadPath(o.getBlobKeyStr());
          String pathStr = AutoBeanUtil.encode(FileDownloadPath.class, path);
          SafeHtmlBuilder sb = new SafeHtmlBuilder();
         
          sb.appendHtmlConstant("<a href='/download?path=" + SafeHtmlUtils.htmlEscape(pathStr) + "' target='blank'>");
          sb.appendHtmlConstant(o.getFilename());
View Full Code Here

TOP

Related Classes of org.yaac.shared.file.FileDownloadPath

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.