@Path(value="/history")
public interface HistoryResource
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
clear() |
javax.ws.rs.core.Response |
getInstanceLogsByProcInstId(Long procInstId,
String logType) |
javax.ws.rs.core.Response |
getInstanceLogsByProcInstIdByLogId(Long instId,
String logType,
String logId) |
javax.ws.rs.core.Response |
getProcessInstanceLog(long procInstId) |
javax.ws.rs.core.Response |
getProcessInstanceLogs() |
javax.ws.rs.core.Response |
getProcessInstanceLogsByProcessId(String processId) |
javax.ws.rs.core.Response |
getProcessInstanceLogsByVariableId(String variableId) |
javax.ws.rs.core.Response |
getProcessInstanceLogsByVariableIdByVariableValue(String variableId,
String value) |
javax.ws.rs.core.Response |
getVariableInstanceLogsByVariableId(String variableId) |
javax.ws.rs.core.Response |
getVariableInstanceLogsByVariableIdByVariableValue(String variableId,
String value) |
@GET @Path(value="/instances") javax.ws.rs.core.Response getProcessInstanceLogs()
@GET
@Path(value="/instance/{procInstId: [0-9]+}")
javax.ws.rs.core.Response getProcessInstanceLog(@PathParam(value="procInstId")
long procInstId)
@GET
@Path(value="/instance/{procInstId: [0-9]+}/{type: [a-zA-Z]+}")
javax.ws.rs.core.Response getInstanceLogsByProcInstId(@PathParam(value="procInstId")
Long procInstId,
@PathParam(value="type")
String logType)
@GET
@Path(value="/instance/{procInstId: [0-9]+}/{type: [a-zA-Z]+}/{logId: [a-zA-Z0-9-:\\._]+}")
javax.ws.rs.core.Response getInstanceLogsByProcInstIdByLogId(@PathParam(value="procInstId")
Long instId,
@PathParam(value="type")
String logType,
@PathParam(value="logId")
String logId)
@GET
@Path(value="/process/{processDefId: [a-zA-Z0-9-:\\._]+}")
javax.ws.rs.core.Response getProcessInstanceLogsByProcessId(@PathParam(value="processDefId")
String processId)
@GET
@Path(value="/variable/{varId: [a-zA-Z0-9-:\\._]+}")
javax.ws.rs.core.Response getVariableInstanceLogsByVariableId(@PathParam(value="varId")
String variableId)
@GET
@Path(value="/variable/{varId: [a-zA-Z0-9-:\\._]+}/value/{value: [a-zA-Z0-9-:\\._]+}")
javax.ws.rs.core.Response getVariableInstanceLogsByVariableIdByVariableValue(@PathParam(value="varId")
String variableId,
@PathParam(value="value")
String value)
@GET
@Path(value="/variable/{varId: [a-zA-Z0-9-:\\._]+}/instances")
javax.ws.rs.core.Response getProcessInstanceLogsByVariableId(@PathParam(value="varId")
String variableId)
@GET
@Path(value="/variable/{varId: [a-zA-Z0-9-:\\.]+}/value/{value: [a-zA-Z0-9-:\\._]+}/instances")
javax.ws.rs.core.Response getProcessInstanceLogsByVariableIdByVariableValue(@PathParam(value="varId")
String variableId,
@PathParam(value="value")
String value)
@POST @Path(value="/clear") javax.ws.rs.core.Response clear()
Copyright © 2001–2016 JBoss by Red Hat. All rights reserved.