KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > api > internal > scriptmappersistence > ScriptMappingManager


1
2 package org.enhydra.shark.api.internal.scriptmappersistence;
3
4 import org.enhydra.shark.api.*;
5 import org.enhydra.shark.api.internal.working.CallbackUtilities;
6
7 /**
8  * Interface represents mappings for XPDL script language.
9  *
10  * @author Zoran Milakovic
11  */

12 public interface ScriptMappingManager
13 {
14    /**
15     * Method configure is called at Shark start up, to configure
16     * implementation of ScriptsMappings.
17     *
18     * @param cus an instance of CallbackUtilities used to get
19     * properties for configuring mappings for tool agents in Shark.
20     *
21     * @exception RootException Thrown if configuring doesn't succeed.
22     */

23    void configure (CallbackUtilities cus) throws RootException;
24
25    public ScriptMappingTransaction getScriptMappingTransaction() throws TransactionException;
26 }
27
28
Popular Tags