[weld-commits] Weld SVN: r6888 - archetypes/javaee6-webapp/trunk/src/main/java/com/mycompany.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Tue Aug 3 18:55:55 EDT 2010


Author: dan.j.allen
Date: 2010-08-03 18:55:54 -0400 (Tue, 03 Aug 2010)
New Revision: 6888

Modified:
   archetypes/javaee6-webapp/trunk/src/main/java/com/mycompany/MemberRegistration.java
Log:
comments


Modified: archetypes/javaee6-webapp/trunk/src/main/java/com/mycompany/MemberRegistration.java
===================================================================
--- archetypes/javaee6-webapp/trunk/src/main/java/com/mycompany/MemberRegistration.java	2010-08-03 22:31:37 UTC (rev 6887)
+++ archetypes/javaee6-webapp/trunk/src/main/java/com/mycompany/MemberRegistration.java	2010-08-03 22:55:54 UTC (rev 6888)
@@ -10,9 +10,10 @@
 import javax.transaction.UserTransaction;
 import org.slf4j.Logger;
 
-// @javax.ejb.Stateful// Adding this annotation eliminates need for manual transaction demarcation
-
-//The @Model stereotype is a convenience mechanism to make this bean request-scoped and give it an EL name.
+// Adding the @Stateful annotation eliminates need for manual transaction demarcation
+// @javax.ejb.Stateful
+// The @Model stereotype is a convenience mechanism to make this a request-scoped bean that has an EL name
+// Read more about the @Model stereotype in this FAQ: http://seamframework.org/Documentation/WhatIsThePurposeOfTheModelAnnotation
 @Model
 public class MemberRegistration
 {



More information about the weld-commits mailing list