Examples of ERXDownloadResponse


Examples of er.extensions.components.ERXDownloadResponse

  @Override
  public WOActionResults performAction() {
    if (_result instanceof File) {
      File file = (File) _result;
     
      ERXDownloadResponse dl = pageWithName(ERXDownloadResponse.class);
      dl.setFileToDownload(file);
      dl.setDownloadFilename(downloadFileNameForClient());
     
      DownloadIsCompletePage nextPage = pageWithName(DownloadIsCompletePage.class);
      nextPage.setDownloadResponseComponent(dl);
      nextPage.setReturnLinkText(returnLinkText());
      nextPage.setReferringPage(_senderPage);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.