You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@tomee.apache.org by bu...@apache.org on 2012/08/09 18:51:18 UTC

svn commit: r828484 - in /websites/staging/openejb/trunk: cgi-bin/ content/ content/examples-trunk/jsf-managedBean-and-ejb/README.html

Author: buildbot
Date: Thu Aug  9 16:51:17 2012
New Revision: 828484

Log:
Staging update by buildbot for openejb

Modified:
    websites/staging/openejb/trunk/cgi-bin/   (props changed)
    websites/staging/openejb/trunk/content/   (props changed)
    websites/staging/openejb/trunk/content/examples-trunk/jsf-managedBean-and-ejb/README.html

Propchange: websites/staging/openejb/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Aug  9 16:51:17 2012
@@ -1 +1 @@
-1371312
+1371314

Propchange: websites/staging/openejb/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Aug  9 16:51:17 2012
@@ -1 +1 @@
-1371312
+1371314

Modified: websites/staging/openejb/trunk/content/examples-trunk/jsf-managedBean-and-ejb/README.html
==============================================================================
--- websites/staging/openejb/trunk/content/examples-trunk/jsf-managedBean-and-ejb/README.html (original)
+++ websites/staging/openejb/trunk/content/examples-trunk/jsf-managedBean-and-ejb/README.html Thu Aug  9 16:51:17 2012
@@ -247,14 +247,14 @@ public interface Calculator {
 }
 </code></pre>
 
-<p>@ManagedBean</p>
-
 <h2>CalculatorBean</h2>
 
 <pre><code>package org.superbiz.jsf;
 
 import javax.ejb.EJB;
+import javax.faces.bean.ManagedBean;
 
+@ManagedBean
 public class CalculatorBean {
     @EJB
     Calculator calculator;