Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Static lifecycle configuration could be done either through the GREG_HOME/repository/conf/registry.xml or through a resource. See Managing Lifecycle.

The following configuration specifies the aspect ServiceLifeCycle in the registry.

Info

When you specify the lifecycle as an aspect in the registry.xml, it will not be listed under "Lifecycles" section.

Configuration through registry.xml

...

Code Block
<aspect name="" class="org.wso2.carbon.governance.registry.extensions.aspects.DefaultLifeCycle">
    <!-- name - used to give the name of the life cycle
         class -  gives the default life cycle class. This can be any class that extends an aspect -->
    <configuration type="">
        <!--type - can have either 'literal' or 'resource' as values -->
        <lifecycle>
            <scxml xmlns="http://www.w3.org/2005/07/scxml"
                   version="1.0"
                   initialstate="">
                <!--initialstate - defines the starting state of the life cycle and can not be null or empty-->
                <state id="">
                    <!-- state element - defines a life cycle state
                    id -  defines the name of the state-->
                    <datamodel>
                        <!--contains 6 data elements that defines check items, transition validations, transition permissions
                        transition executions, transition UIs and transition scripts-->
                        <data name="checkItems">
                            <!--name - defines that this element contains the set of check items. It is required to be
                            set to 'checkItems'-->
                            <item name="" forEvent="">
                                <!--name - defines the check item name
                                    forEvent - de fines the set of transitions that this check item is required. Accepts a
                                    ',' separated list-->
                                <permissions>
                                    <permission roles=""/>
                                    <!--roles - defines the set of roles that has the ability to check/un-check this check item-->
                                </permissions>
                                <validations>
                                    <validation forEvent="" class="">
                                        <!--forEvent - defines the event that the custom validation should be done
                                            class - defines the full qualified name of the custom validations class -->
                                        <parameter name="" value=""/>
                                        <!--name - defines the custom parameter name
                                           value - defines the custom parameter value-->
                                    </validation>
                                </validations>
                            </item>
                        </data>
                        <data name="transitionValidation">
                            <!--name - defines that this element contains the set of transition validations. It is required to be
                            set to 'transitionValidation'-->
                            <validation forEvent="" class="">
                                <!--forEvent - defines the event that the custom validation should be done
                                    class - defines the full qualified name of the custom validations class -->
                                <parameter name="" value=""/>
                                <!--name - defines the custom parameter name
                                    value - defines the custom parameter value-->
                            </validation>
                        </data>
                        <data name="transitionExecution">
                            <!--name - defines that this element contains the set of transition executions. It is required to be
                            set to 'transitionExecution'-->
                            <execution forEvent="" class="">
                                <!--forEvent - defines the event that the execution should be done
                                    class - defines the full qualified name of the execution class -->
                                <parameter name="" value=""/>
                                <!--name - defines the custom parameter name
                                    value - defines the custom parameter value-->
                            </execution>			
                        </data>
                        <data name="transitionUI">
                            <!--name - defines that this element contains a reference to a transition UI. It is required to be
                            set to 'transitionUI'-->
                            <ui forEvent="" href=""/>
                                <!--forEvent - defines the event that the UI should be displayed for
                                    href - the hyperlink of the page to open on the browser -->
                        </data>
                        <data name="transitionPermission">
                            <!--name - defines that this element contains the set of transition permissions. It is required to be
                            set to 'transitionPermission'-->
                            <permission forEvent="" roles=""/>
                        </data>
                        <data name="transitionScripts">
                            <!--name - defines that this element contains the set of transition scripts. It is required to be
                            set to 'transitionScripts'-->
                            <js forEvent="">
                                <!--forEvent - defines the event that this script block will execute-->
                                <console function="">
                                    <!--function - defines the name of the function-->
                                    <script type="text/javascript">
                                        <!--contains the script-->
                                    </script>
                                </console>
                                <server function="">
                                    <script type="text/javascript"></script>
                                </server>
                            </js>
                        </data>
                    </datamodel>
                    <transition event="" target=""/>
                    <!--event - defines the name of the transition event
                        target - defines the next state of the transition-->
                </state>
            </scxml>
        </lifecycle>
    </configuration>
</aspect>

The lifecycle configuration gives the user the ability to define custom validations. This can be done by providing a custom class for the class parameter in the following element. The class attribute in the above element should be filled with the full qualified name of the custom class. For example, org.wso2.carbon.governance.registry.extensions.aspects.DefaultLifeCycle.

...

The user can either use one of the Supported Standard Validators or implement the org.wso2.carbon.governance.registry.extensions.interfaces.CustomValidations interface which has the following structure. The values in the parameter elements are passed to the init method of the custom class at runtime.

...

The user can either use one of the Supported Standard Executors or implement the org.wso2.carbon.governance.registry.extensions.interfaces.Execution interface which has the following structure. The values in the parameter elements are passed to the init method of the custom class at runtime.

...

The user can also define customized user interfaces to assist the transition operations. Please read about the Default Transition UI.

Info

The configuration model which was used in previous Governance Registry releases is still supported.

See also Lifecycle Configuration Elements.

Excerpt
hiddentrue

A description of a lifecycle configuration in the Governance Registry.