Interface ManageApplicationsApi
-
- All Known Implementing Classes:
GlobalRestService
@Path("/") public interface ManageApplicationsApiWebswing REST APIThe public REST API provided by Webswing Server
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateApp(String appPath)Create ApplicationvoidremoveApp(String appPath)Remove ApplicationvoidstartApp(String appPath)Enable ApplicationvoidstopApp(String appPath)Disable Application
-
-
-
Method Detail
-
createApp
@GET @Path("/rest/create{appPath}") void createApp(@PathParam("appPath") String appPath) throws RestExceptionCreate Application- Throws:
RestException
-
removeApp
@GET @Path("/rest/remove{appPath}") void removeApp(@PathParam("appPath") String appPath) throws RestExceptionRemove Application- Throws:
RestException
-
startApp
@GET @Path("/rest/start{appPath}") void startApp(@PathParam("appPath") String appPath) throws RestExceptionEnable Application- Throws:
RestException
-
stopApp
@GET @Path("/rest/stop{appPath}") void stopApp(@PathParam("appPath") String appPath) throws RestExceptionDisable Application- Throws:
RestException
-
-