User: jwalters
  Date: 02/04/07 19:35:02

  Modified:    src/resources/org/jboss/verifier DefaultMessages.properties
  Log:
  First pass at EJB 2.0 Verifier.  Handles session beans, though not all
  messages are in the properties file yet.  Most entity bean code is in,
  but not turned on until it can be tested more thoroughly.
  
  Revision  Changes    Path
  1.11      +20 -0     
jboss/src/resources/org/jboss/verifier/DefaultMessages.properties
  
  Index: DefaultMessages.properties
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/resources/org/jboss/verifier/DefaultMessages.properties,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DefaultMessages.properties        7 Jun 2001 21:23:31 -0000       1.10
  +++ DefaultMessages.properties        8 Apr 2002 02:35:02 -0000       1.11
  @@ -110,3 +110,23 @@
   
   16.5.a   =  An entity bean requires a primary key class (prim-key-class tag).
   
  +7.10.1   = The session bean must implement either a remote home and remote, or a 
local home and a local interface.
  +
  +7.10.2.a  =  A session bean must implement, directly or indirectly, the SessionBean 
interface.
  +7.5.3.a  =  A stateless Session bean must not implement the SessionSynchronization 
interface.
  +7.5.3.b  =  A session bean using bean-managed transaction demarcation may not 
implement the SessionSynchronization interface.
  +7.10.3   = A session bean must implement at least one ejbCreate method.
  +7.6.1    =  A bean with bean-managed transaction demarcation cannot implement the 
SessionSynchronization interface.
  +
  +7.10.2.b1 =  The session bean class must be defined as public.
  +7.10.2.b2 =  The session bean class must not be final.
  +7.10.2.b3 =  The session bean class must not be abstract.
  +7.10.2.c =  The session bean class must have a public constructor that takes no 
parameters.
  +7.10.2.d =  The class must not define the finalize() method.
  +
  +7.10.3.b =  The ejbCreate(...) method of a session bean class must be declared as 
public.
  +7.10.3.c =  The ejbCreate(...) method of a session bean class must not be declared 
as final or static.
  +7.10.3.d =  The return type of an ejbCreate(...) method must be void.
  +7.10.3.e =  The method arguments of an ejbCreate(...) method must be legal types 
for RMI/IIOP.
  +
  +22.2     = The bean provider must specify the fully-qualified name of the Java 
class that implements the enterprise bean's business methods.
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to