Package step.plugins.threadmanager
Class ThreadManagerServices
- java.lang.Object
-
- step.framework.server.AbstractServices<User>
-
- step.core.deployment.AbstractStepServices
-
- step.plugins.threadmanager.ThreadManagerServices
-
@Path("/threadmanager") public class ThreadManagerServices extends AbstractStepServices
-
-
Field Summary
-
Fields inherited from class step.core.deployment.AbstractStepServices
configuration, SESSION
-
-
Constructor Summary
Constructors Constructor Description ThreadManagerServices()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Operation>
getCurrentOperations(String executionID)
List<OperationDetails>
getCurrentOperationsList()
List<Operation>
getOperationsByReportNodeId(String reportNodeId)
void
init()
-
Methods inherited from class step.core.deployment.AbstractStepServices
getContext, getExecutionRunnable, getObjectEnricher, getObjectFilter, getScheduler
-
-
-
-
Method Detail
-
init
@PostConstruct public void init() throws Exception
- Overrides:
init
in classAbstractStepServices
- Throws:
Exception
-
getCurrentOperationsList
@GET @Produces("application/json") @Path("/operations/list") public List<OperationDetails> getCurrentOperationsList()
-
getCurrentOperations
@GET @Produces("application/json") @Path("/operations") public List<Operation> getCurrentOperations(@QueryParam("eid") String executionID)
-
-