User: osh
Date: 01/01/20 08:32:53
Modified: src/main/org/jboss/test/bank/interfaces AccountHome.java
BankHome.java CustomerHome.java TellerHome.java
Log:
More cleanup to avoid verifier warnings.
Revision Changes Path
1.3 +9 -6
jbosstest/src/main/org/jboss/test/bank/interfaces/AccountHome.java
Index: AccountHome.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/bank/interfaces/AccountHome.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- AccountHome.java 2001/01/07 23:14:35 1.2
+++ AccountHome.java 2001/01/20 16:32:52 1.3
@@ -11,8 +11,8 @@
/**
*
* @see <related>
- * @author $Author: peter $
- * @version $Revision: 1.2 $
+ * @author $Author: osh $
+ * @version $Revision: 1.3 $
*/
public interface AccountHome
extends EJBHome
@@ -35,20 +35,23 @@
throws RemoteException, FinderException;
public Collection findAll()
- throws RemoteException;
+ throws RemoteException, FinderException;
public Collection findByOwner(Customer owner)
- throws RemoteException;
+ throws RemoteException, FinderException;
public Collection findLargeAccounts(int balance)
- throws RemoteException;
+ throws RemoteException, FinderException;
}
/*
- * $Id: AccountHome.java,v 1.2 2001/01/07 23:14:35 peter Exp $
+ * $Id: AccountHome.java,v 1.3 2001/01/20 16:32:52 osh Exp $
* Currently locked by:$Locker: $
* Revision:
* $Log: AccountHome.java,v $
+ * Revision 1.3 2001/01/20 16:32:52 osh
+ * More cleanup to avoid verifier warnings.
+ *
* Revision 1.2 2001/01/07 23:14:35 peter
* Trying to get JAAS to work within test suite.
*
1.3 +7 -4 jbosstest/src/main/org/jboss/test/bank/interfaces/BankHome.java
Index: BankHome.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/bank/interfaces/BankHome.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- BankHome.java 2001/01/07 23:14:35 1.2
+++ BankHome.java 2001/01/20 16:32:52 1.3
@@ -10,8 +10,8 @@
/**
*
* @see <related>
- * @author $Author: peter $
- * @version $Revision: 1.2 $
+ * @author $Author: osh $
+ * @version $Revision: 1.3 $
*/
public interface BankHome
extends EJBHome
@@ -28,15 +28,18 @@
// Public --------------------------------------------------------
public Bank create()
- throws RemoteException;
+ throws RemoteException, CreateException;
}
/*
- * $Id: BankHome.java,v 1.2 2001/01/07 23:14:35 peter Exp $
+ * $Id: BankHome.java,v 1.3 2001/01/20 16:32:52 osh Exp $
* Currently locked by:$Locker: $
* Revision:
* $Log: BankHome.java,v $
+ * Revision 1.3 2001/01/20 16:32:52 osh
+ * More cleanup to avoid verifier warnings.
+ *
* Revision 1.2 2001/01/07 23:14:35 peter
* Trying to get JAAS to work within test suite.
*
1.3 +7 -4
jbosstest/src/main/org/jboss/test/bank/interfaces/CustomerHome.java
Index: CustomerHome.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/bank/interfaces/CustomerHome.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CustomerHome.java 2001/01/07 23:14:36 1.2
+++ CustomerHome.java 2001/01/20 16:32:52 1.3
@@ -11,8 +11,8 @@
/**
*
* @see <related>
- * @author $Author: peter $
- * @version $Revision: 1.2 $
+ * @author $Author: osh $
+ * @version $Revision: 1.3 $
*/
public interface CustomerHome
extends EJBHome
@@ -35,14 +35,17 @@
throws RemoteException, FinderException;
public Collection findAll()
- throws RemoteException;
+ throws RemoteException, FinderException;
}
/*
- * $Id: CustomerHome.java,v 1.2 2001/01/07 23:14:36 peter Exp $
+ * $Id: CustomerHome.java,v 1.3 2001/01/20 16:32:52 osh Exp $
* Currently locked by:$Locker: $
* Revision:
* $Log: CustomerHome.java,v $
+ * Revision 1.3 2001/01/20 16:32:52 osh
+ * More cleanup to avoid verifier warnings.
+ *
* Revision 1.2 2001/01/07 23:14:36 peter
* Trying to get JAAS to work within test suite.
*
1.3 +7 -4
jbosstest/src/main/org/jboss/test/bank/interfaces/TellerHome.java
Index: TellerHome.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/bank/interfaces/TellerHome.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- TellerHome.java 2001/01/07 23:14:36 1.2
+++ TellerHome.java 2001/01/20 16:32:52 1.3
@@ -10,8 +10,8 @@
/**
*
* @see <related>
- * @author $Author: peter $
- * @version $Revision: 1.2 $
+ * @author $Author: osh $
+ * @version $Revision: 1.3 $
*/
public interface TellerHome
extends EJBHome
@@ -28,15 +28,18 @@
// Public --------------------------------------------------------
public Teller create()
- throws RemoteException;
+ throws RemoteException, CreateException;
}
/*
- * $Id: TellerHome.java,v 1.2 2001/01/07 23:14:36 peter Exp $
+ * $Id: TellerHome.java,v 1.3 2001/01/20 16:32:52 osh Exp $
* Currently locked by:$Locker: $
* Revision:
* $Log: TellerHome.java,v $
+ * Revision 1.3 2001/01/20 16:32:52 osh
+ * More cleanup to avoid verifier warnings.
+ *
* Revision 1.2 2001/01/07 23:14:36 peter
* Trying to get JAAS to work within test suite.
*