コード例 #1
0
  public void run() {
    IModelParticipant performer = null;
    AttributeType auxiliaryAttr =
        AttributeUtil.getAttribute(activity, PredefinedConstants.ACTIVITY_IS_AUXILIARY_ATT);

    CompoundCommand cmd = new CompoundCommand();
    cmd.add(ActivityCommandFactory.getSetImplementationCommand(implType, activity));
    if (implType.equals(ActivityImplementationType.MANUAL_LITERAL)) {
      performer = GenericUtils.getLanePerformerForActivity(activity);

      if (performer != null) {
        cmd.add(
            new SetValueCmd(
                activity,
                CarnotWorkflowModelPackage.eINSTANCE.getActivityType_Performer(),
                performer));
      }
    }

    if (!ActivityUtil.isInteractive(activity, implType) && activity.getPerformer() != null) {
      cmd.add(
          new SetValueCmd(
              activity, CarnotWorkflowModelPackage.eINSTANCE.getActivityType_Performer(), null));
    }
    if (!implType.equals(ActivityImplementationType.APPLICATION_LITERAL)
        && activity.getApplication() != null) {
      cmd.add(
          new SetValueCmd(
              activity, CarnotWorkflowModelPackage.eINSTANCE.getActivityType_Application(), null));
    }

    if (auxiliaryAttr != null) {
      cmd.add(
          new DeleteValueCmd(
              auxiliaryAttr.eContainer(), auxiliaryAttr, auxiliaryAttr.eContainingFeature()));
    }
    domain.getCommandStack().execute(cmd);
  }
コード例 #2
0
  @Test
  public void testCrossModelLanePerformer() throws Exception {
    providerModel = modelService.findModel(PROVIDER_MODEL_ID);
    providerModel2 = modelService.findModel(PROVIDER_MODEL_ID2);

    consumerModel = modelService.findModel(CONSUMER_MODEL_ID);

    InputStream requestInput =
        getClass().getResourceAsStream("../../service/rest/requests/createRolesForProvider.txt");
    InputStreamReader requestStream = new InputStreamReader(requestInput);
    replay(requestStream, "createRolesForProvider", false);

    requestInput =
        getClass().getResourceAsStream("../../service/rest/requests/createRolesForProvider2.txt");
    requestStream = new InputStreamReader(requestInput);
    replay(requestStream, "createRolesForProvider2", false);

    requestInput =
        getClass().getResourceAsStream("../../service/rest/requests/prepareMultiModelConsumer.txt");
    requestStream = new InputStreamReader(requestInput);
    replay(requestStream, "prepareMultiModelConsumer", false);

    RoleType role2 = null;
    RoleType role1 = null;
    for (RoleType role : consumerModel.getRole()) {
      if (role.getId().equals("Role2")) {
        role2 = role;
      }
      if (role.getId().equals("Role1")) {
        role1 = role;
      }
    }

    assertThat(role2, is(nullValue()));
    assertThat(role1, is(not(nullValue())));
    assertThat(role1.eIsProxy(), is(false));

    EList<ProcessDefinitionType> processDefinitions = consumerModel.getProcessDefinition();
    ProcessDefinitionType processDefinition = processDefinitions.get(0);
    assertThat(processDefinition, is(not(nullValue())));
    EList<ActivityType> activities = processDefinition.getActivity();
    ActivityType activity = activities.get(0);
    assertThat(activity, is(not(nullValue())));
    IModelParticipant performer = activity.getPerformer();
    assertThat(performer, is(not(nullValue())));
    assertEquals(performer, role1);

    EList<ExternalPackage> externalPackage =
        consumerModel.getExternalPackages().getExternalPackage();
    assertThat(externalPackage.size(), is(0));

    saveModel();

    List<AttributeType> attributes = consumerModel.getAttribute();
    for (AttributeType attribute : attributes) {
      String attributeName = attribute.getName();
      assertThat(attributeName, not(containsString("carnot:connection:")));
    }

    // saveReplayModel("C:/tmp");
  }