2 Replies Latest reply on Jun 21, 2009 10:17 PM by ariel_red

    coordination features in jboss portal

      hi,
      I'm reading the chapter 8 in the reference of jboss portal.I can't understand the coordination features very well.Do anybody tell me we use these features in what situation?

        • 1. Re: coordination features in jboss portal
          mposolda

          The important assumption is, that you are familiar with inter-portlet communication concepts like Public render parameters and Events, which is described in JSR-286 (http://jcp.org/en/jsr/detail?id=286).

          Scenario described in chapter 8 extends the implicit behaviour, which should be implemented by every portal. For example you can use parameter bindings if you have portletA" with public render parameter "paramA" and "portletB" with public render parameter "portletB" and you need to wire these parameters with each other. So you can set "paramA" in processAction method in "portletA" and you can read this parameter as "paramB" in render method of "portletB". With default implicit behaviour, the both parameters need to have same name.

          The possibility of different names "paramA" and "paramB" is enabled by parameter bindings. Event wirings and alias bindings concept are similar to this concept as well.

          Use portal-coordination-samples if you need more inspiration. We will provide more useful sample portlets soon.

          • 2. Re: coordination features in jboss portal

            Thanks for your help. I really get quite useful suggestion.Now I'm reading the portal-coordination-samples.