Skip to content

Commit 30494df

Browse files
authored
Merge pull request #22 from wurstbrot/patch-2
add component and filePath
2 parents b199183 + 998c9c8 commit 30494df

File tree

1 file changed

+9
-0
lines changed
  • src/main/java/io/securecodebox/persistence/defectdojo/models

1 file changed

+9
-0
lines changed

src/main/java/io/securecodebox/persistence/defectdojo/models/Finding.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,15 @@ public class Finding extends DefectDojoModel {
9898
@Builder.Default
9999
Boolean falsePositive = false;
100100

101+
@JsonProperty("component_name")
102+
String componentName;
103+
104+
@JsonProperty("component_version")
105+
String componentVersion;
106+
107+
@JsonProperty("file_path")
108+
String filePath;
109+
101110
@JsonProperty
102111
@NonNull
103112
@Builder.Default

0 commit comments

Comments
 (0)