mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
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
12 lines
247 B
Java
12 lines
247 B
Java
package org.alfresco.repo.web.util;
|
|
|
|
import org.springframework.context.ConfigurableApplicationContext;
|
|
|
|
public interface JettyComponent
|
|
{
|
|
int getPort();
|
|
ConfigurableApplicationContext getApplicationContext();
|
|
void start();
|
|
void shutdown();
|
|
}
|