diff options
author | andre.schmid <andre.schmid@est.tech> | 2021-08-31 10:04:26 +0100 |
---|---|---|
committer | andre.schmid <andre.schmid@est.tech> | 2021-08-31 10:20:06 +0100 |
commit | 38c6faa738abe6e0acdd24df2364d725d36fca40 (patch) | |
tree | 3412c0ee222d60bbc98a997390dbae19d55e3fc9 /common-be/src | |
parent | a1cdcda28701f603cf95f591ba447bd723273622 (diff) |
Fix additional types import file generation
The additional_type_definitions.yaml is missing types entries and
header.
Also, the solution is not considering the types entries, i.e.
'data_types:', 'policy_types:', etc., when replacing types and
generating the new file, which renders the solution broken.
This change aims to fix the related problems.
Change-Id: I412683b49966c09dd067ecbf8a1d778155b23fa6
Issue-ID: SDC-3703
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'common-be/src')
-rw-r--r-- | common-be/src/main/java/org/openecomp/sdc/be/data/model/ToscaImportByModel.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common-be/src/main/java/org/openecomp/sdc/be/data/model/ToscaImportByModel.java b/common-be/src/main/java/org/openecomp/sdc/be/data/model/ToscaImportByModel.java index 5e8818b0b6..fabb04f5f5 100644 --- a/common-be/src/main/java/org/openecomp/sdc/be/data/model/ToscaImportByModel.java +++ b/common-be/src/main/java/org/openecomp/sdc/be/data/model/ToscaImportByModel.java @@ -23,9 +23,11 @@ import com.datastax.driver.mapping.annotations.Column; import com.datastax.driver.mapping.annotations.PartitionKey; import com.datastax.driver.mapping.annotations.Table; import lombok.Data; +import lombok.EqualsAndHashCode; @Data @Table(keyspace = "sdcartifact", name = "tosca_import_by_model") +@EqualsAndHashCode public class ToscaImportByModel { @PartitionKey @@ -35,6 +37,7 @@ public class ToscaImportByModel { @Column(name = "full_path") private String fullPath; @Column(name = "content") + @EqualsAndHashCode.Exclude private String content; } |