Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)

67466: BDE-266 Move JettyComponent util classes to test source, so that we can get rid of Jetty in the war


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@68341 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2014-04-30 15:48:14 +00:00
parent c62d459485
commit 25adfb7df4
3 changed files with 3 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package org.alfresco.repo.web.util;
import org.springframework.context.ConfigurableApplicationContext;
public interface JettyComponent
{
int getPort();
ConfigurableApplicationContext getApplicationContext();
void start();
void shutdown();
}