Search in sources :

Example 1 with CaseRoleAssignmentList

use of org.kie.server.api.model.cases.CaseRoleAssignmentList in project droolsjbpm-integration by kiegroup.

the class CaseResource method getCaseInstanceRoleAssignments.

@ApiOperation(value = "Returns role assignments for a specified case instance.")
@ApiResponses(value = { @ApiResponse(code = 500, message = "Unexpected error"), @ApiResponse(code = 404, message = "Case instance not found"), @ApiResponse(code = 200, response = CaseRoleAssignmentList.class, message = "Successful response", examples = @Example(value = { @ExampleProperty(mediaType = JSON, value = CASE_ROLES_ASSIGNMENTS_JSON) })) })
@GET
@Path(CASE_ROLES_GET_URI)
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
public Response getCaseInstanceRoleAssignments(@javax.ws.rs.core.Context HttpHeaders headers, @ApiParam(value = "container id that case instance belongs to", required = true, example = "evaluation_1.0.0-SNAPSHOT") @PathParam(CONTAINER_ID) String containerId, @ApiParam(value = "identifier of the case instance", required = true, example = "CASE-00000000001") @PathParam(CASE_ID) String caseId) {
    return invokeCaseOperation(headers, containerId, caseId, (Variant v, String type, Header... customHeaders) -> {
        logger.debug("About to look for role assignments in case {}", caseId);
        CaseRoleAssignmentList responseObject = this.caseManagementServiceBase.getRoleAssignment(containerId, caseId);
        logger.debug("Returning OK response with content '{}'", responseObject);
        return createCorrectVariant(responseObject, headers, Response.Status.OK, customHeaders);
    });
}
Also used : RestUtils.createCorrectVariant(org.kie.server.remote.rest.common.util.RestUtils.createCorrectVariant) Variant(javax.ws.rs.core.Variant) Header(org.kie.server.remote.rest.common.Header) CaseRoleAssignmentList(org.kie.server.api.model.cases.CaseRoleAssignmentList) Path(javax.ws.rs.Path) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET) ApiOperation(io.swagger.annotations.ApiOperation) ApiResponses(io.swagger.annotations.ApiResponses)

Example 2 with CaseRoleAssignmentList

use of org.kie.server.api.model.cases.CaseRoleAssignmentList in project droolsjbpm-integration by kiegroup.

the class CaseManagementServiceBase method getRoleAssignment.

public CaseRoleAssignmentList getRoleAssignment(String containerId, String caseId) {
    verifyContainerId(containerId, caseId);
    Collection<CaseRoleInstance> caseRoleInstances = caseService.getCaseRoleAssignments(caseId);
    logger.debug("Roles assignments for case {} are {}", caseId, caseRoleInstances);
    List<CaseRoleAssignment> caseRoles = ConvertUtils.transformRoleAssignment(caseRoleInstances);
    CaseRoleAssignmentList caseRolesList = new CaseRoleAssignmentList(caseRoles);
    return caseRolesList;
}
Also used : CaseRoleAssignment(org.kie.server.api.model.cases.CaseRoleAssignment) CaseRoleAssignmentList(org.kie.server.api.model.cases.CaseRoleAssignmentList) CaseRoleInstance(org.jbpm.casemgmt.api.model.instance.CaseRoleInstance)

Example 3 with CaseRoleAssignmentList

use of org.kie.server.api.model.cases.CaseRoleAssignmentList in project droolsjbpm-integration by kiegroup.

the class CaseServicesClientImpl method getRoleAssignments.

@Override
public List<CaseRoleAssignment> getRoleAssignments(String containerId, String caseId) {
    CaseRoleAssignmentList list = null;
    if (config.isRest()) {
        Map<String, Object> valuesMap = new HashMap<String, Object>();
        valuesMap.put(CONTAINER_ID, containerId);
        valuesMap.put(CASE_ID, caseId);
        list = makeHttpGetRequestAndCreateCustomResponse(build(loadBalancer.getUrl(), CASE_URI + "/" + CASE_ROLES_GET_URI, valuesMap), CaseRoleAssignmentList.class);
    } else {
        CommandScript script = new CommandScript(Collections.singletonList((KieServerCommand) new DescriptorCommand("CaseService", "getRoleAssignment", new Object[] { containerId, caseId })));
        ServiceResponse<CaseRoleAssignmentList> response = (ServiceResponse<CaseRoleAssignmentList>) executeJmsCommand(script, DescriptorCommand.class.getName(), KieServerConstants.CAPABILITY_CASE).getResponses().get(0);
        throwExceptionOnFailure(response);
        if (shouldReturnWithNullResponse(response)) {
            return null;
        }
        list = response.getResult();
    }
    if (list != null) {
        return list.getItems();
    }
    return Collections.emptyList();
}
Also used : DescriptorCommand(org.kie.server.api.commands.DescriptorCommand) ServiceResponse(org.kie.server.api.model.ServiceResponse) KieServerCommand(org.kie.server.api.model.KieServerCommand) HashMap(java.util.HashMap) CaseRoleAssignmentList(org.kie.server.api.model.cases.CaseRoleAssignmentList) CommandScript(org.kie.server.api.commands.CommandScript)

Aggregations

CaseRoleAssignmentList (org.kie.server.api.model.cases.CaseRoleAssignmentList)3 ApiOperation (io.swagger.annotations.ApiOperation)1 ApiResponses (io.swagger.annotations.ApiResponses)1 HashMap (java.util.HashMap)1 GET (javax.ws.rs.GET)1 Path (javax.ws.rs.Path)1 Produces (javax.ws.rs.Produces)1 Variant (javax.ws.rs.core.Variant)1 CaseRoleInstance (org.jbpm.casemgmt.api.model.instance.CaseRoleInstance)1 CommandScript (org.kie.server.api.commands.CommandScript)1 DescriptorCommand (org.kie.server.api.commands.DescriptorCommand)1 KieServerCommand (org.kie.server.api.model.KieServerCommand)1 ServiceResponse (org.kie.server.api.model.ServiceResponse)1 CaseRoleAssignment (org.kie.server.api.model.cases.CaseRoleAssignment)1 Header (org.kie.server.remote.rest.common.Header)1 RestUtils.createCorrectVariant (org.kie.server.remote.rest.common.util.RestUtils.createCorrectVariant)1