01: /*
02: * Generated by XDoclet - Do not edit!
03: */
04: package com.mockrunner.example.ejb.interfaces;
05:
06: /**
07: * Remote interface for BillEntity.
08: */
09: public interface BillEntity extends javax.ejb.EJBObject {
10:
11: public java.lang.Integer getId() throws java.rmi.RemoteException;
12:
13: public java.util.Date getDate() throws java.rmi.RemoteException;
14:
15: public void setDate(java.util.Date date)
16: throws java.rmi.RemoteException;
17:
18: public boolean getPaid() throws java.rmi.RemoteException;
19:
20: public void setPaid(boolean isPaid) throws java.rmi.RemoteException;
21:
22: }
|