Class ExportServices

java.lang.Object
step.framework.server.AbstractServices<User>
step.core.deployment.AbstractStepServices
step.core.export.ExportServices

@Singleton @Path("export") public class ExportServices extends AbstractStepServices
  • Constructor Details

    • ExportServices

      public ExportServices()
  • Method Details

    • init

      @PostConstruct public void init() throws Exception
      Overrides:
      init in class AbstractStepServices
      Throws:
      Exception
    • exportEntityById

      @GET @Path("/{entity}/{id}") @Consumes("application/json") @Produces("application/json") public AsyncTaskStatus<Resource> exportEntityById(@PathParam("entity") String entity, @PathParam("id") String id, @QueryParam("recursively") boolean recursively, @QueryParam("filename") String filename, @QueryParam("additionalEntities") List<String> additionalEntities)
    • exportEntities

      @GET @Path("/{entity}") @Consumes("application/json") @Produces("application/json") public AsyncTaskStatus<Resource> exportEntities(@PathParam("entity") String entity, @QueryParam("recursively") boolean recursively, @QueryParam("filename") String filename, @QueryParam("additionalEntities") List<String> additionalEntities)