-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for plan item id mapping for case instance migration
- Loading branch information
1 parent
687d8a3
commit a07632a
Showing
27 changed files
with
1,162 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...wable-cmmn-api/src/main/java/org/flowable/cmmn/api/migration/ChangePlanItemIdMapping.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.flowable.cmmn.api.migration; | ||
|
||
public class ChangePlanItemIdMapping { | ||
|
||
protected String existingPlanItemId; | ||
protected String newPlanItemId; | ||
|
||
public ChangePlanItemIdMapping(String existingPlanItemId, String newPlanItemId) { | ||
this.existingPlanItemId = existingPlanItemId; | ||
this.newPlanItemId = newPlanItemId; | ||
} | ||
|
||
public String getExistingPlanItemId() { | ||
return existingPlanItemId; | ||
} | ||
|
||
public void setExistingPlanItemId(String existingPlanItemId) { | ||
this.existingPlanItemId = existingPlanItemId; | ||
} | ||
|
||
public String getNewPlanItemId() { | ||
return newPlanItemId; | ||
} | ||
|
||
public void setNewPlanItemId(String newPlanItemId) { | ||
this.newPlanItemId = newPlanItemId; | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...rc/main/java/org/flowable/cmmn/api/migration/ChangePlanItemIdWithDefinitionIdMapping.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.flowable.cmmn.api.migration; | ||
|
||
public class ChangePlanItemIdWithDefinitionIdMapping { | ||
|
||
protected String existingPlanItemDefinitionId; | ||
protected String newPlanItemDefinitionId; | ||
|
||
public ChangePlanItemIdWithDefinitionIdMapping(String existingPlanItemDefinitionId, String newPlanItemDefinitionId) { | ||
this.existingPlanItemDefinitionId = existingPlanItemDefinitionId; | ||
this.newPlanItemDefinitionId = newPlanItemDefinitionId; | ||
} | ||
|
||
public String getExistingPlanItemDefinitionId() { | ||
return existingPlanItemDefinitionId; | ||
} | ||
|
||
public void setExistingPlanItemDefinitionId(String existingPlanItemDefinitionId) { | ||
this.existingPlanItemDefinitionId = existingPlanItemDefinitionId; | ||
} | ||
|
||
public String getNewPlanItemDefinitionId() { | ||
return newPlanItemDefinitionId; | ||
} | ||
|
||
public void setNewPlanItemDefinitionId(String newPlanItemDefinitionId) { | ||
this.newPlanItemDefinitionId = newPlanItemDefinitionId; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.