Class DbRefactoringResource

java.lang.Object
ch.tocco.nice2.rest.core.spi.AbstractRestResource
ch.tocco.nice2.devcon.impl.dbrefactoring.DbRefactoringResource
All Implemented Interfaces:
RestResource

@Path("/devcon/dbrefactoring") public class DbRefactoringResource extends AbstractRestResource
  • Constructor Details

  • Method Details

    • loadModules

      @GET @Produces("application/json") @Path("/modules") public List<String> loadModules()
    • loadFragments

      @GET @Produces("application/json") @Path("/fragments") public List<ch.tocco.nice2.devcon.impl.dbrefactoring.DbRefactoringResource.FragmentInfo> loadFragments()
    • startDbRefactoring

      @POST @Consumes("application/json") @Produces("application/json") @Path("/executions") public jakarta.ws.rs.core.Response startDbRefactoring(ch.tocco.nice2.devcon.impl.dbrefactoring.DbRefactoringResource.DbRefactoringRequest request)
    • loadDbRefactoringReport

      @GET @Produces("application/json") @Path("/executions/{uuid}") public ch.tocco.nice2.devcon.impl.dbrefactoring.DbRefactoringResource.Execution loadDbRefactoringReport(@PathParam("uuid") String uuid)