summaryrefslogtreecommitdiff
path: root/same/src/main/java/com/orbekk/same/http/ServerContainer.java
blob: 6f8791017c0e93705f73cd6d507ee32270610903 (plain)
1
2
3
4
5
6
7
8
package com.orbekk.same.http;

public interface ServerContainer {
    public abstract int getPort();
    public abstract void start() throws Exception;
    public abstract void stop() throws Exception;
    public abstract void join() throws Exception;
}