Interface ManageApplicationsApi

  • All Known Implementing Classes:
    GlobalRestService

    @Path("/")
    public interface ManageApplicationsApi
    Webswing REST API

    The public REST API provided by Webswing Server

    • Method Detail

      • createApp

        @GET
        @Path("/rest/create{appPath}")
        void createApp​(@PathParam("appPath")
                       String appPath)
                throws RestException
        Create Application
        Throws:
        RestException
      • removeApp

        @GET
        @Path("/rest/remove{appPath}")
        void removeApp​(@PathParam("appPath")
                       String appPath)
                throws RestException
        Remove Application
        Throws:
        RestException
      • startApp

        @GET
        @Path("/rest/start{appPath}")
        void startApp​(@PathParam("appPath")
                      String appPath)
               throws RestException
        Enable Application
        Throws:
        RestException
      • stopApp

        @GET
        @Path("/rest/stop{appPath}")
        void stopApp​(@PathParam("appPath")
                     String appPath)
              throws RestException
        Disable Application
        Throws:
        RestException