User: salborini
Date: 00/10/11 14:26:11
Modified: src/main/org/jboss/test/testbean/bean EntityPKBean.java
Log:
Fixed the EntityPkBean example according to what the verifier said.
Revision Changes Path
1.2 +4 -4
jbosstest/src/main/org/jboss/test/testbean/bean/EntityPKBean.java
Index: EntityPKBean.java
===================================================================
RCS file:
/products/cvs/ejboss/jbosstest/src/main/org/jboss/test/testbean/bean/EntityPKBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- EntityPKBean.java 2000/09/27 00:46:29 1.1
+++ EntityPKBean.java 2000/10/11 21:26:11 1.2
@@ -80,7 +80,7 @@
entityContext = null;
}
- public void updateAllValues(AComplexPK aComplexPK){
+ public void updateAllValues(AComplexPK aComplexPK) throws RemoteException {
this.aBoolean = aComplexPK.aBoolean;
this.aDouble = aComplexPK.aDouble;
@@ -90,18 +90,18 @@
};
- public AComplexPK readAllValues() {
+ public AComplexPK readAllValues() throws RemoteException {
return new AComplexPK(aBoolean, anInt, aLong, aDouble, aString);
};
- public int getOtherField() {
+ public int getOtherField() throws RemoteException {
return otherField;
}
- public void setOtherField(int newValue) {
+ public void setOtherField(int newValue) throws RemoteException {
otherField = newValue;
}