ReportParameterValueAgentRemote.java from Negest at Krugle
Show ReportParameterValueAgentRemote.java syntax highlighted
package tk.sabreWulf.negest.reports;
import javax.ejb.Remote;
import tk.sabreWulf.negest.entity.reports.ReportParameterValueEJB;
@Remote
public interface ReportParameterValueAgentRemote {
public ReportParameterValueEJB createReportParameterValue(ReportParameterValueEJB reportParameterValue);
public void deleteReportParameterValue(ReportParameterValueEJB reportParameterValue);
public void deleteReportParameterValue(long pk);
public void modifyReportParameterValue(ReportParameterValueEJB reportParameterValue);
public ReportParameterValueEJB getReportParameterValueByPK(long pk);
}
See more files for this project here