TOC PREV NEXT INDEX

Adjust the Managed Bean Description


Now that we have a new bean implementation for our session-scoped counter, we need to update the JSF descriptor to make use of it.

Change the class of the managed bean to use our new implementation:

<managed-bean>
 
    <description>A session-scoped counter.</description>
 
    <managed-bean-name>sessionCounter</managed-bean-name>
 
    <managed-bean-class>
 
        org.icefaces.tutorial.easyajaxpush.SessionCounter
 
    </managed-bean-class>
 
    <managed-bean-scope>session</managed-bean-scope>
 
 </managed-bean>
 


Copyright 2005-2009. ICEsoft Technologies, Inc.
TOC PREV NEXT INDEX