-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7150 from deutschebank/db-contrib/waltz-7138-data…
…-type-merge Db contrib/waltz 7138 data type merge
- Loading branch information
Showing
12 changed files
with
463 additions
and
64 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
14 changes: 14 additions & 0 deletions
14
waltz-model/src/main/java/org/finos/waltz/model/datatype/DataTypeMigrationResult.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,14 @@ | ||
package org.finos.waltz.model.datatype; | ||
|
||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; | ||
import org.immutables.value.Value; | ||
|
||
@Value.Immutable | ||
@JsonSerialize(as=ImmutableDataTypeMigrationResult.class) | ||
public interface DataTypeMigrationResult { | ||
long usageCount(); | ||
long classificationRuleCount(); | ||
long logicalFlowDataTypeCount(); | ||
long physicalSpecDataTypeCount(); | ||
boolean dataTypeRemoved(); | ||
} |
Oops, something went wrong.