User: juha
Date: 00/11/05 11:02:36
Modified: src/resources/org/jboss/verifier DefaultMessages.properties
Log:
6.10.6 for session beans
Revision Changes Path
1.7 +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.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- DefaultMessages.properties 2000/09/24 15:21:51 1.6
+++ DefaultMessages.properties 2000/11/05 19:02:36 1.7
@@ -34,6 +34,10 @@
6.10.6.c = The method return values in the home interface must be of valid types
for RMI/IIOP.
6.10.6.d = The methods in the home interface must include java.rmi.RemoteException
in their throws clause.
6.10.6.e = A session bean's home interface must define one or more create(...)
methods.
+6.10.6.f = Each create(...) method in the session bean's home interface must have
a matching ejbCreate(...) method in the session bean's class.
+6.10.6.g = The return type for a create(...) method must be the session bean's
remote interface type.
+6.10.6.h = All the exceptions defined in the throws clause of the matching
ejbCreate(...) method of the enterprise bean class must be included in the throws
clause of a matching create(...) method.
+6.10.6.i = The throws clause of a create(...) method MUST include the
javax.ejb.CreateException.
9.2.2.a = The entity bean's class must implement, directly or indirectly, the
javax.ejb.EntityBean interface.
9.2.2.b = The entity bean class must be defined as public.