User: juha
Date: 00/11/14 11:54:32
Modified: src/resources/org/jboss/verifier DefaultMessages.properties
Log:
9.2.8 Finders for entity home interface
Revision Changes Path
1.9 +4 -0
jboss/src/resources/org/jboss/verifier/DefaultMessages.properties
Index: DefaultMessages.properties
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/resources/org/jboss/verifier/DefaultMessages.properties,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- DefaultMessages.properties 2000/11/06 20:47:27 1.8
+++ DefaultMessages.properties 2000/11/14 19:54:32 1.9
@@ -84,6 +84,10 @@
9.2.8.g = The return type for a create(...) method must be the entity bean's
remote interface type.
9.2.8.h = All the exceptions defined in the throws clause of the matching
ejbCreate(...) and ejbPostCreate(...) methods of the enterprise bean class must be
included in the throws clause of a matching create(...) method.
9.2.8.i = The throws clause of a create(...) method must include the
javax.ejb.CreateException.
+9.2.8.j = Each finder method must match one of the ejbFind<METHOD> methods
defined in the entity bean class.
+9.2.8.k = The return type for a find<METHOD> method must be the entity bean's
remote interface type (single-object finder) or a collection thereof (for a
multi-object finder).
+9.2.8.l = All the exceptions defined in the throws clause of an ejbFind method of
the entity bean class must be included in the throws clause of the matching find
method of the home interface.
+9.2.8.m = The throws clause of a finder method must include the
javax.ejb.FinderException.
9.2.9.a = The primary key class must be a legal Value Type in RMI-IIOP.
9.2.9.b = The primary key class must override equals().