@ManagementOperation(description="Cancel a Request",params={@ManagementParameter(name="sessionId",description="The session Identifier"), @ManagementParameter(name="executionId",description="The Execution Identifier")})
public boolean cancelRequest(String sessionId, long executionId) throws AdminException {
try {
return this.dqpCore.cancelRequest(sessionId, executionId);
} catch (TeiidComponentException e) {
throw new AdminComponentException(e);
}
}