You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ja...@apache.org on 2009/03/08 17:25:58 UTC

svn commit: r751460 - /myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/model/ManagedBean.java

Author: jankeesvanandel
Date: Sun Mar  8 16:25:58 2009
New Revision: 751460

URL: http://svn.apache.org/viewvc?rev=751460&view=rev
Log:
MYFACES-2140: Removed one attribute from ManagedBean, to go with the spec

Modified:
    myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/model/ManagedBean.java

Modified: myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/model/ManagedBean.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/model/ManagedBean.java?rev=751460&r1=751459&r2=751460&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/model/ManagedBean.java (original)
+++ myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/model/ManagedBean.java Sun Mar  8 16:25:58 2009
@@ -26,7 +26,7 @@
 /**
  * @author Simon Lessard (latest modification by $Author: slessard $)
  * @version $Revision: 696523 $ $Date: 2008-09-24 18:45:00 -0400 (mer., 17 sept. 2008) $
- * 
+ *
  * @since 2.0
  */
 @Retention(RetentionPolicy.RUNTIME)
@@ -37,14 +37,10 @@
      * Taken to be the value of the eager attribute of the managed-bean.
      */
     public boolean eager() default false;
-    
+
     /**
      * Taken to be the managed-bean-name. See class documentation for details.
      */
     public String name() default "";
-    
-    /**
-     * Taken to be the managed-bean-scope. See class documentation for details.
-     */
-    public String scope() default "none";
+
 }