Class PluginResource

java.lang.Object
com.atlassian.confluence.functest.rest.admin.PluginResource

@Path("/admin/plugin") public class PluginResource extends Object
  • Constructor Details

    • PluginResource

      @Inject public PluginResource(com.atlassian.plugin.PluginController pluginController, com.atlassian.plugin.metadata.RequiredPluginProvider requiredPluginProvider)
  • Method Details

    • enablePlugin

      @PUT @Path("{pluginKey}/enabled") public javax.ws.rs.core.Response enablePlugin(@PathParam("pluginKey") String pluginKey)
    • enablePluginModule

      @PUT @Path("{pluginKey}/module/{moduleKey}/enabled") public javax.ws.rs.core.Response enablePluginModule(@PathParam("pluginKey") String pluginKey, @PathParam("moduleKey") String moduleKey)
    • disablePlugin

      @DELETE @Path("{pluginKey}/enabled") public javax.ws.rs.core.Response disablePlugin(@PathParam("pluginKey") String pluginKey)
    • disablePluginModule

      @DELETE @Path("{pluginKey}/module/{moduleKey}/enabled") public javax.ws.rs.core.Response disablePluginModule(@PathParam("pluginKey") String pluginKey, @PathParam("moduleKey") String moduleKey)