001package org.nuxeo.webengine.gwt.codeserver;
002
003public interface CodeServerLauncher {
004
005    void startup(String[] args) throws Exception;
006
007    void shutdown() throws Exception;
008
009}