Class SystemPropertyResource

java.lang.Object
com.atlassian.bamboo.plugins.testutils.rest.resource.system.SystemPropertyResource

@Path("/system-property") @Consumes("application/json") @Produces("application/json") @Singleton public class SystemPropertyResource extends Object
  • Constructor Details

    • SystemPropertyResource

      public SystemPropertyResource()
  • Method Details

    • getSystemProperty

      @GET @Path("{name}") public String getSystemProperty(@PathParam("name") String propertyName)
    • setSystemProperty

      @PUT @Path("{name}") public String setSystemProperty(@PathParam("name") String propertyName, String newValue)
    • unsetSystemProperty

      @DELETE @Path("{name}") public String unsetSystemProperty(@PathParam("name") String propertyName, String newValue)