javax.faces.model
Annotation Type ManagedBeans


@Retention(value=RUNTIME)
@Target(value=TYPE)
@Inherited
public @interface ManagedBeans

Container annotation to specify multiple ManagedBean annotations on a single class. Example:



    ManagedBeans({
        ManagedBean(name="bean1",scope="request"),
        ManagedBean(name="bean2",scope="session")
    })

 

The action described in ManagedBean must be taken for each “ManagedBean” present in the container annotation.

Since:
2.0

Required Element Summary
 ManagedBean[] value
           
 

Element Detail

value

public abstract ManagedBean[] value


Copyright © 2002-2008 Sun Microsystems, Inc. All Rights Reserved.