[JBoss-dev] CVS update: jboss/src/resources/org/jboss/verifier DefaultMessages.properties

2002-04-18 Thread Christian Riege

  User: lqd 
  Date: 02/04/18 03:27:49

  Modified:src/resources/org/jboss/verifier DefaultMessages.properties
  Log:
  - fix messages for section 10.6.7 (ejbSelectXXX methods)
  
  Revision  ChangesPath
  1.15  +2 -2  
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.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- DefaultMessages.properties14 Apr 2002 01:12:05 -  1.14
  +++ DefaultMessages.properties18 Apr 2002 10:27:48 -  1.15
  @@ -180,8 +180,8 @@
   10.6.6.c   = Home methods of an entity bean class must not define 
java.rmi.RemoteException.
   
   10.6.7.a   = Select methods of an entity bean class must be declared as public.
  -10.6.7.b   = Select methods of an entity bean class must not be declared abstract.
  -10.6.7.c   = Select methods of an entity bean class must not define 
java.rmi.RemoteException.
  +10.6.7.b   = Select methods of an entity bean class must be declared abstract.
  +10.6.7.c   = Select methods of an entity bean class must define 
javax.ejb.FinderException in their throws clause.
   
   10.8.1.a   = The type of the primkey-field must match the primary key class.
   10.8.1.b   = The primkey-field must be one of the CMP fields of the entity bean.
  
  
  

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



[JBoss-dev] CVS update: jboss/src/resources/org/jboss/verifier DefaultMessages.properties

2002-04-18 Thread Christian Riege

  User: lqd 
  Date: 02/04/18 03:25:19

  Modified:src/resources/org/jboss/verifier Tag: Branch_3_0
DefaultMessages.properties
  Log:
  - fix messages for section 10.6.7 (ejbSelectXXX methods)
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.14.2.1  +2 -2  
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.14
  retrieving revision 1.14.2.1
  diff -u -r1.14 -r1.14.2.1
  --- DefaultMessages.properties14 Apr 2002 01:12:05 -  1.14
  +++ DefaultMessages.properties18 Apr 2002 10:25:06 -  1.14.2.1
  @@ -180,8 +180,8 @@
   10.6.6.c   = Home methods of an entity bean class must not define 
java.rmi.RemoteException.
   
   10.6.7.a   = Select methods of an entity bean class must be declared as public.
  -10.6.7.b   = Select methods of an entity bean class must not be declared abstract.
  -10.6.7.c   = Select methods of an entity bean class must not define 
java.rmi.RemoteException.
  +10.6.7.b   = Select methods of an entity bean class must be declared abstract.
  +10.6.7.c   = Select methods of an entity bean class must define 
javax.ejb.FinderException in their throws clause.
   
   10.8.1.a   = The type of the primkey-field must match the primary key class.
   10.8.1.b   = The primkey-field must be one of the CMP fields of the entity bean.
  
  
  

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



[JBoss-dev] CVS update: jboss/src/resources/org/jboss/verifier DefaultMessages.properties

2002-04-13 Thread Jay Walters

  User: jwalters
  Date: 02/04/13 18:12:05

  Modified:src/resources/org/jboss/verifier DefaultMessages.properties
  Log:
  Entity bean verification is working a bit better, it's now all turned on.
  
  Revision  ChangesPath
  1.14  +2 -4  
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.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- DefaultMessages.properties12 Apr 2002 03:38:34 -  1.13
  +++ DefaultMessages.properties14 Apr 2002 01:12:05 -  1.14
  @@ -157,10 +157,10 @@
   10.6.2.b  =  The entity bean class must be defined as public and abstract.
   10.6.2.c  =  The entity bean class must define a public constructor that takes no 
arguments.
   10.6.2.d  =  The entity bean class must not define the finalize() method.
  -10.6.2.i  =  The entity bean class must not defined ejbFind methods.
   10.6.2.g  =  The entity bean class must define a get accessor for each CMP field.
   10.6.2.h  =  The entity bean class must define a set accessor for each CMP field.
  -10.6.2.j  =  The entity bean class must define a get and set accessor for each CMP 
field.
  +10.6.2.i  =  CMP entity beans may not define the implementation of a finder.
  +10.6.2.j  =  CMP entity beans may not define the implementation of a finder.
   
   10.6.4.b  =  The ejbCreate(...) method of an entity bean class must be declared as 
public.
   10.6.4.c  =  The ejbcreate(...) method of an entity bean class must not be declared 
as final or static.
  @@ -197,7 +197,6 @@
   12.2.9.h  =  The throws clause of a create(...) method must include the 
javax.ejb.CreateException.
   12.2.9.j  =  The return type for a find method must be the entity bean's 
local interface type (single-object finder) or a collection thereof (for a 
multi-object finder).
   12.2.9.m  =  The throws clause of a finder method must include the 
javax.ejb.FinderException.
  -10.6.2.h   =  CMP entity beans may not define the implementation of a finder.
   12.2.9.i  =  Each finder method must match one of the ejbFind methods 
defined in the entity bean class.
   12.2.9.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.
   12.2.9.m   =  Each home method must match a method defined in the entity bean class.
  @@ -211,7 +210,6 @@
   12.2.11.h  =  The throws clause of a create(...) method must include the 
javax.ejb.CreateException.
   12.2.11.j  =  The return type for a find method must be the entity bean's 
local interface type (single-object finder) or a collection thereof (for a 
multi-object finder).
   12.2.11.m  =  The throws clause of a finder method must include the 
javax.ejb.FinderException.
  -10.6.2.h   =  CMP entity beans may not define the implementation of a finder.
   12.2.11.i  =  Each finder method must match one of the ejbFind methods 
defined in the entity bean class.
   12.2.11.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.
   12.2.11.m   =  Each local home method must match a method defined in the entity 
bean class.
  
  
  

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



[JBoss-dev] CVS update: jboss/src/resources/org/jboss/verifier DefaultMessages.properties

2002-04-11 Thread Jay Walters

  User: jwalters
  Date: 02/04/11 20:38:34

  Modified:src/resources/org/jboss/verifier DefaultMessages.properties
  Log:
  Entity home and local home interface are now working, rest of
  entity verification is still commented out pending some test.
  
  Revision  ChangesPath
  1.13  +29 -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.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- DefaultMessages.properties9 Apr 2002 04:06:38 -   1.12
  +++ DefaultMessages.properties12 Apr 2002 03:38:34 -  1.13
  @@ -188,4 +188,33 @@
   
   12.2.1.a   = The bean provider must specify the fully-qualified name of the primary 
key class for the entity bean.
   
  +
  +12.2.9.a  =  Entity bean's home interface must extend the javax.ejb.EJBHome 
interface.
  +12.2.9.b  =  The methods in the home interface must not include 
java.rmi.RemoteException in their throws clause.
  +12.2.9.e  =  Each create(...) method in the entity bean's home interface must have 
a matching ejbCreate(...) method in the entity bean's class.
  +12.2.9.f  =  The return type for a create(...) method must be the entity bean's 
local interface type.
  +12.2.9.g  =  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.
  +12.2.9.h  =  The throws clause of a create(...) method must include the 
javax.ejb.CreateException.
  +12.2.9.j  =  The return type for a find method must be the entity bean's 
local interface type (single-object finder) or a collection thereof (for a 
multi-object finder).
  +12.2.9.m  =  The throws clause of a finder method must include the 
javax.ejb.FinderException.
  +10.6.2.h   =  CMP entity beans may not define the implementation of a finder.
  +12.2.9.i  =  Each finder method must match one of the ejbFind methods 
defined in the entity bean class.
  +12.2.9.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.
  +12.2.9.m   =  Each home method must match a method defined in the entity bean class.
  +12.2.9.n   =  A home method declared in the home interface must not return the 
entity beans remote interface. 
  +
  +12.2.11.a  =  The Entity bean's local home interface must extend the 
javax.ejb.EJBLocalHome interface.
  +12.2.11.b  =  The methods in the local home interface must not include 
java.rmi.RemoteException in their throws clause.
  +12.2.11.e  =  Each create(...) method in the entity bean's local home interface 
must have a matching ejbCreate(...) method in the entity bean's class.
  +12.2.11.f  =  The return type for a create(...) method must be the entity bean's 
local interface type.
  +12.2.11.g  =  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.
  +12.2.11.h  =  The throws clause of a create(...) method must include the 
javax.ejb.CreateException.
  +12.2.11.j  =  The return type for a find method must be the entity bean's 
local interface type (single-object finder) or a collection thereof (for a 
multi-object finder).
  +12.2.11.m  =  The throws clause of a finder method must include the 
javax.ejb.FinderException.
  +10.6.2.h   =  CMP entity beans may not define the implementation of a finder.
  +12.2.11.i  =  Each finder method must match one of the ejbFind methods 
defined in the entity bean class.
  +12.2.11.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.
  +12.2.11.m   =  Each local home method must match a method defined in the entity 
bean class.
  +12.2.11.n   =  A home method declared in the local home interface must not return 
the entity beans remote interface. 
  +
   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



[JBoss-dev] CVS update: jboss/src/resources/org/jboss/verifier DefaultMessages.properties

2002-04-08 Thread Jay Walters

  User: jwalters
  Date: 02/04/08 21:06:38

  Modified:src/resources/org/jboss/verifier DefaultMessages.properties
  Log:
  Updated verifier to do simple entity bean verification for EJB 2.0.
  Updated some of the tests so the beans are in compliance with EJB 2.0.
  
  Revision  ChangesPath
  1.12  +63 -4 
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.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- DefaultMessages.properties8 Apr 2002 02:35:02 -   1.11
  +++ DefaultMessages.properties9 Apr 2002 04:06:38 -   1.12
  @@ -110,23 +110,82 @@
   
   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.8.a=  The home interface of a stateless session bean must have one create 
method that takes no arguments.
  +7.8.b=  The create method of a stateless session bean home interface must 
return the session bean's remote interface.
  +7.8.c=  There can be only one create method in the home interface of a 
stateless session bean.
  +
  +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.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   =  A session bean must implement at least one ejbCreate 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.
  +
  +7.10.6.a =  A session bean's home interface must extend the javax.ejb.EJBHome 
interface.
  +7.10.6.b1 =  The method arguments in the home interface must be of valid types for 
RMI/IIOP.
  +7.10.6.b2 =  The method return values in the home interface must be of valid types 
for RMI/IIOP.
  +7.10.6.b3 =  The methods in the home interface must include 
java.rmi.RemoteException in their throws clause.
  +7.10.6.d1 =  A session bean's home interface must define one or more create(...) 
methods.
  +7.10.6.d2 =  The home interface of a stateless session bean must have one create 
method that takes no arguments.
  +7.10.6.e =  Each create(...) method in the session bean's home interface must have 
a matching ejbCreate(...) method in the session bean's class.
  +7.10.6.f =  The return type for a create(...) method must be the session bean's 
remote interface type.
  +7.10.6.g =  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.
  +7.10.6.h =  The throws clause of a create(...) method must include the 
javax.ejb.CreateException.
  +
  +7.10.8.a=  A session bean's local home interface must extend the 
javax.ejb.EJBLocalHome interface.
  +7.10.8.b =  The methods in the local home interface must not include 
java.rmi.RemoteException in their throws clause.
  +7.10.8.d1 =  A session bean's local home interface must define one or more 
create(...) methods.
  +7.10.8.d2=  The local home interface of a stateless session bean must have one 
create method that takes no arguments.
  +7.10.8.e =  Each create(...) method in the session bean's local home interface must 
have a matching ejbCreate(...) method in the session bean's class.
  +7.10.8.f =  The return type for a create(...) method must be the session bean's 
local interface type.
  +7.10.8.g =  All the exceptions defined in the throws clause of the matching 
ejbCreate(...) method of the enterprise bean class must be 

[JBoss-dev] CVS update: jboss/src/resources/org/jboss/verifier DefaultMessages.properties

2002-04-08 Thread Jay Walters

  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  ChangesPath
  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.properties7 Jun 2001 21:23:31 -   1.10
  +++ DefaultMessages.properties8 Apr 2002 02:35:02 -   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



[JBoss-dev] CVS update: jboss/src/resources/org/jboss/verifier DefaultMessages.properties

2001-06-07 Thread kvvinaymenon

  User: kvvinaymenon
  Date: 01/06/07 14:23:31

  Modified:src/resources/org/jboss/verifier DefaultMessages.properties
  Log:
  Added message 9.2.7.h for validating the Remote Interface as throwing valid RMI/IIOP 
types.
  
  Revision  ChangesPath
  1.10  +1 -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.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- DefaultMessages.properties2000/11/14 19:54:32 1.9
  +++ DefaultMessages.properties2001/06/07 21:23:31 1.10
  @@ -74,6 +74,7 @@
   9.2.7.e  =  For each method defined in the remote interface, there must be a 
matching method in the entity bean's class that has the same name and argument types.
   9.2.7.f  =  For each method defined in the remote interface, there must be a 
matching method in the entity bean's class that has the same return type.
   9.2.7.g  =  All the exceptions defined in the throws clause of a matching method in 
the entity bean's class must be defined in the throws clause of the method of the 
remote interface.
  +9.2.7.h  =  The exceptions thrown by methods in the remote interface must be valid 
types for RMI/IIOP
   
   9.2.8.a  =  Entity bean's home interface must extend the javax.ejb.EJBHome 
interface.
   9.2.8.b  =  The method arguments in the home interface must be of valid types for 
RMI/IIOP.
  
  
  

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