User: juha
Date: 00/07/25 10:36:12
Modified: src/resources/org/jboss/verifier DefaultMessages.properties
Log:
some additional session stuff
Revision Changes Path
1.3 +9 -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.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- DefaultMessages.properties 2000/07/22 21:23:43 1.2
+++ DefaultMessages.properties 2000/07/25 17:36:12 1.3
@@ -25,6 +25,15 @@
6.10.5.b = The method arguments in the remote interface must be of valid types for
RMI/IIOP.
6.10.5.c = The method return values in the remote interface must be of valid types
for RMI/IIOP.
6.10.5.d = The methods in the remote interface must include
java.rmi.RemoteException in their throws clause.
+6.10.5.e = The methods defined in the remote interface must have a matching method
in the bean's class with the same name.
+6.10.5.f = The methods defined in the remote interface must have a matching method
in the bean's class with the same number and types of arguments, and the same return
type.
+6.10.5.g = All the exceptions defined in the throws clause of the matching method
of the session bean class must be defined in the throws clause of the method of the
remote interface.
+
+6.10.6.a = A session bean's home interface must extend the javax.ejb.EJBHome
interface.
+6.10.6.b = The method arguments in the home interface must be of valid types for
RMI/IIOP.
+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.
16.2.b = The Bean Provider must specify the fully-qualified name of the Java
class that implements the enterprise bean's business methods.
16.2.c = The Bean Provider must specify the fully-qualified name of the
enterprise bean's home interface in the home element.