Package er.extensions.components

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

Related Classes of er.extensions.components.ERXDownloadResponse

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.