Dashboard > RIFE > ... > Web engine > Optional exit and output declaration
RIFE Log In | Sign Up   View a printable version of the current page.
Optional exit and output declaration


Added by Geert Bevin, last edited by Geert Bevin on Dec 19, 2005
Labels: 
(None)

When you declare your elements inside the site-structure, you're not forced to declare exits and outputs. This makes sense, since be embedding the declaration inside the site-structure, these declarations can't be reused anymore.

So the following declaration:

<element id="YourElementId" url="the/url" implementation="your.element.Implementation">
    <exit name="exit1"/>
    <output name="output1"/>
    <output name="output2"/>

    <flowlink srcexit="exit1" destid="AnotherElementId"/>
    <datalink srcoutput="output1" destid="AnotherElementId" destinput="input1"/>
    <datalink srcoutput="output2" destid="AnotherElementId" destinput="input2"/>
</element>

can be written as this:

<element id="YourElementId" url="the/url" implementation="your.element.Implementation">
    <flowlink srcexit="exit1" destid="AnotherElementId"/>
    <datalink srcoutput="output1" destid="AnotherElementId" destinput="input1"/>
    <datalink srcoutput="output2" destid="AnotherElementId" destinput="input2"/>
</element>



Are you enjoying Confluence? Please consider purchasing it today.
Powered by Atlassian Confluence, the Enterprise Wiki. (Version: 2.2.1a Build:#515 May 19, 2006) - Bug/feature request - Contact Administrators