Examples of PdfView


Examples of net.sourceforge.pebble.web.view.PdfView

      return new NotFoundView();

    } else {
     
    String filename = this.buildPermalink(blogEntry);
    return new PdfView(blogEntry, filename + ".pdf");

  }
  }
View Full Code Here

Examples of net.sourceforge.pebble.web.view.PdfView

   public void testPdfViewForUnpublishedBlogEntry() throws Exception {
  request.setParameter("entry", unpublishedEntry.getId());
    View view = action.process(request, response);
    assertTrue(view instanceof PdfView);
 
  PdfView pdfView = (PdfView) view;
  assertEquals("application/pdf", pdfView.getContentType());
  }
View Full Code Here

Examples of net.sourceforge.pebble.web.view.PdfView

  public void testPdfViewForPublishedBlogEntry() throws Exception {
  request.setParameter("entry", publishedEntry.getId());
    View view = action.process(request, response);
    assertTrue(view instanceof PdfView);
 
  PdfView pdfView = (PdfView) view;
  assertEquals("application/pdf", pdfView.getContentType());

  }
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.