1 2 package org.enhydra.shark.api.client.wfservice;3 4 /**5 *6 * Represents script mappings.7 *8 * @author Zoran Milakovic9 */10 11 public interface ScriptMappingAdministration {12 13 /**14 * This method is used to let shark know who uses this API.15 *16 * @param userId String representing user Id.17 *18 */19 void connect (String userId);20 21 }22