Interface WebServer
-
public interface WebServerManages the runtime web (HTTP) server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddPortMapping(java.lang.String contextName, int port, java.lang.String path)Adds a new port mapping and thus a new API context to this web server.
-
-
-
Method Detail
-
addPortMapping
void addPortMapping(java.lang.String contextName, int port, java.lang.String path)Adds a new port mapping and thus a new API context to this web server.- Parameters:
contextName- the name of the API context.port- the port of the API context.path- the path of the API context.
-
-