Is there a way of setting a managed bean parameter in a composite component and then leaving the using classes to decide which actual managed bean to use?

something along the lines of: comp.xhtml

       <cc:interface>
            <cc:attribute name="price" />
            <cc:param name="pageBean" value="#{superBean}" />       
       <cc:interface>
       <cc:implementation>
                <h:outputText value="#{cc.attrs.price}"/>
       </cc:implementation>

And then, in the using page

   <ezcomp:comp pageBean="actualBean"
                          price="#{actualBean.price}" >

    </ezcomp:comp> 

In my case ActualBean is a subtype of SuperBean.

I'm not even sure this is possible, but let's just say it would be great if someone proved me wrong.

Thank you in advance

link|improve this question

This makes no sense. What exactly is the functional requirement? Restricting the managed bean type to a certain type? – BalusC Nov 18 '11 at 17:00
To remove duplicate code, basically. i have a lot of attributes that need to be set in the composite component. The only thing that differs in the using pages is the name of the managed beans, all being subtypes of a superbean. It's not essential, i was just wondering if it's possible. – glasspill Nov 18 '11 at 23:27
feedback

1 Answer

up vote 1 down vote accepted

To remove duplicate code, basically. i have a lot of attributes that need to be set in the composite component. The only thing that differs in the using pages is the name of the managed beans, all being subtypes of a superbean.

You don't need to specify all the attributes. Just specifying alone the bean is sufficient. You could reference its properties in the composite component directly.

<cc:interface>
    <cc:attribute name="pageBean" type="com.example.SuperBean" required="true" />       
<cc:interface>
<cc:implementation>
    <h:outputText value="#{cc.attrs.pageBean.price}"/>
</cc:implementation>

with

<ezcomp:comp pageBean="#{actualBean}" />
link|improve this answer
Perfect. Thank you. Exactly what i was looking for. – glasspill Nov 19 '11 at 1:40
You're welcome. – BalusC Nov 19 '11 at 2:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.