@Path(value="message") @Produces(value="application/json") public class MessageManagementController extends AbstractManagementController
Constructor and Description |
---|
MessageManagementController() |
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
disableMessageTracing() |
javax.ws.rs.core.Response |
enableMessageTracing() |
javax.ws.rs.core.Response |
isMessageTracingEnabled() |
javax.ws.rs.core.Response |
retrieveMessagePath(String projectId,
String projectVersion,
String flowId) |
javax.ws.rs.core.Response |
retrieveMessageView(String projectId,
String projectVersion,
String flowId,
String sourceId,
String outPortDisplayName,
String targetId) |
javax.ws.rs.core.Response |
retrieveReceivedMessage(String projectId,
String projectVersion,
String flowId,
String elementId) |
sendCustomResponse, sendCustomResponse, sendCustomSuccessResponse, sendSuccessResponse
@GET @Path(value="{projectId}/{projectVersion}/{flowId}/{elementId}/received") public javax.ws.rs.core.Response retrieveReceivedMessage(@PathParam(value="projectId") String projectId, @PathParam(value="projectVersion") String projectVersion, @PathParam(value="flowId") String flowId, @PathParam(value="elementId") String elementId)
@POST @Path(value="trace") public javax.ws.rs.core.Response enableMessageTracing()
@DELETE @Path(value="trace") public javax.ws.rs.core.Response disableMessageTracing()
@GET @Path(value="trace") public javax.ws.rs.core.Response isMessageTracingEnabled()
@GET @Path(value="{projectId}/{projectVersion}/{flowId}/path") public javax.ws.rs.core.Response retrieveMessagePath(@PathParam(value="projectId") String projectId, @PathParam(value="projectVersion") String projectVersion, @PathParam(value="flowId") String flowId)
@GET @Path(value="{projectId}/{projectVersion}/{flowId}/view") public javax.ws.rs.core.Response retrieveMessageView(@PathParam(value="projectId") String projectId, @PathParam(value="projectVersion") String projectVersion, @PathParam(value="flowId") String flowId, @QueryParam(value="sourceId") String sourceId, @QueryParam(value="outPortDisplayName") String outPortDisplayName, @QueryParam(value="targetId") String targetId)
Copyright © 2016–2019 AdroitLogic. All rights reserved.