1 21 22 package com.jaspersoft.jasperserver.api.engine.jasperreports.domain.impl; 23 24 import net.sf.jasperreports.engine.JasperPrint; 25 26 import com.jaspersoft.jasperserver.api.engine.common.domain.Result; 27 28 29 33 public class ReportUnitResult implements Result 34 { 35 36 private JasperPrint jasperPrint = null; 37 38 41 public JasperPrint getJasperPrint() 42 { 43 return jasperPrint; 44 } 45 46 49 public void setJasperPrint(JasperPrint jasperPrint) 50 { 51 this.jasperPrint = jasperPrint; 52 } 53 54 } 55 | Popular Tags |