01: /*
02: * Generated by XDoclet - Do not edit!
03: */
04: package com.mockrunner.example.ejb.interfaces;
05:
06: /**
07: * Remote interface for DBStateful.
08: */
09: public interface DBStateful extends javax.ejb.EJBObject {
10:
11: public void beginTransaction() throws java.rmi.RemoteException;
12:
13: public void executeSQL(java.lang.String sql)
14: throws java.rmi.RemoteException;
15:
16: public void endTransaction(boolean commit)
17: throws java.rmi.RemoteException;
18:
19: }
|