Class HousekeepingServices


  • @Singleton
    @Path("housekeeping")
    public class HousekeepingServices
    extends step.core.deployment.AbstractStepAsyncServices
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void deleteExecution​(java.lang.String id)  
      step.controller.services.async.AsyncTaskStatus<step.framework.server.tables.service.bulk.TableBulkOperationReport> deleteExecutions​(step.framework.server.tables.service.bulk.TableBulkOperationRequest request)  
      void init()  
      step.controller.services.async.AsyncTaskStatus<step.framework.server.tables.service.bulk.TableBulkOperationReport> protectExecutions​(step.framework.server.tables.service.bulk.TableBulkOperationRequest request)  
      void setExecutionDescription​(java.lang.String id, java.lang.String description)  
      void setExecutionProtection​(java.lang.String id, boolean protection)  
      step.controller.services.async.AsyncTaskStatus<step.framework.server.tables.service.bulk.TableBulkOperationReport> unprotectExecutions​(step.framework.server.tables.service.bulk.TableBulkOperationRequest request)  
      • Methods inherited from class step.core.deployment.AbstractStepAsyncServices

        getSession, scheduleAsyncTaskWithinSessionContext, setCurrentSession
      • Methods inherited from class step.core.deployment.AbstractStepServices

        checkRightsOnBehalfOf, getAuthorizationManager, getContext, getExecutionRunnable, getObjectEnricher, getObjectFilter, getScheduler
      • Methods inherited from class step.framework.server.AbstractServices

        getAbstractContext, getHttpSession, getSession, invalidateSession, setHttpServletRequest, setSession
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • executionAccessor

        protected step.core.execution.model.ExecutionAccessor executionAccessor
    • Constructor Detail

      • HousekeepingServices

        public HousekeepingServices()
    • Method Detail

      • init

        @PostConstruct
        public void init()
                  throws java.lang.Exception
        Overrides:
        init in class step.core.deployment.AbstractStepAsyncServices
        Throws:
        java.lang.Exception
      • setExecutionProtection

        @POST
        @Consumes("application/json")
        @Path("/execution/{id}/protection")
        public void setExecutionProtection​(@PathParam("id")
                                           java.lang.String id,
                                           boolean protection)
      • setExecutionDescription

        @POST
        @Consumes("application/json")
        @Path("/execution/{id}/description")
        public void setExecutionDescription​(@PathParam("id")
                                            java.lang.String id,
                                            java.lang.String description)
      • deleteExecutions

        @DELETE
        @Consumes("application/json")
        @Path("/executions/bulk")
        public step.controller.services.async.AsyncTaskStatus<step.framework.server.tables.service.bulk.TableBulkOperationReport> deleteExecutions​(step.framework.server.tables.service.bulk.TableBulkOperationRequest request)
      • protectExecutions

        @POST
        @Consumes("application/json")
        @Path("/executions/bulk/protect")
        public step.controller.services.async.AsyncTaskStatus<step.framework.server.tables.service.bulk.TableBulkOperationReport> protectExecutions​(step.framework.server.tables.service.bulk.TableBulkOperationRequest request)
      • unprotectExecutions

        @POST
        @Consumes("application/json")
        @Path("/executions/bulk/unprotect")
        public step.controller.services.async.AsyncTaskStatus<step.framework.server.tables.service.bulk.TableBulkOperationReport> unprotectExecutions​(step.framework.server.tables.service.bulk.TableBulkOperationRequest request)