Package org.camunda.bpm.engine.rest.dto.repository

Examples of org.camunda.bpm.engine.rest.dto.repository.ProcessDefinitionDto


      definition = repoService.getProcessDefinition(processDefinitionId);
    } catch (ProcessEngineException e) {
      throw new InvalidRequestException(Status.NOT_FOUND, e, "No matching definition with id " + processDefinitionId);
    }

    ProcessDefinitionDto result = ProcessDefinitionDto.fromProcessDefinition(definition);

    return result;
  }
View Full Code Here


    } else {
      matchingDefinitions = query.list();
    }

    for (ProcessDefinition definition : matchingDefinitions) {
      ProcessDefinitionDto def = ProcessDefinitionDto.fromProcessDefinition(definition);
      definitions.add(def);
    }
    return definitions;
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.rest.dto.repository.ProcessDefinitionDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.