Skip to content

Commit 4a8841d

Browse files
add kics description (#41)
* add kics description * missing change
1 parent 1c60e58 commit 4a8841d

File tree

1 file changed

+18
-0
lines changed
  • src/main/java/com/checkmarx/ast/results/result

1 file changed

+18
-0
lines changed

src/main/java/com/checkmarx/ast/results/result/Data.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ public class Data {
2121
String resultHash;
2222
String languageName;
2323
String description;
24+
String platform;
25+
String issueType;
26+
String expectedValue;
27+
String value;
28+
String fileName;
29+
int line;
2430
List<Node> nodes;
2531
List<PackageData> packageData;
2632

@@ -30,6 +36,12 @@ public Data(@JsonProperty("queryId") String queryId,
3036
@JsonProperty("resultHash") String resultHash,
3137
@JsonProperty("languageName") String languageName,
3238
@JsonProperty("description") String description,
39+
@JsonProperty("platform") String platform,
40+
@JsonProperty("issueType") String issueType,
41+
@JsonProperty("expectedValue") String expectedValue,
42+
@JsonProperty("value") String value,
43+
@JsonProperty("filename") String fileName,
44+
@JsonProperty("line") int line,
3345
@JsonProperty("nodes") List<Node> nodes,
3446
@JsonProperty("packageData") List<PackageData> packageData) {
3547
this.queryId = queryId;
@@ -38,6 +50,12 @@ public Data(@JsonProperty("queryId") String queryId,
3850
this.resultHash = resultHash;
3951
this.languageName = languageName;
4052
this.description = description;
53+
this.platform = platform;
54+
this.issueType = issueType;
55+
this.expectedValue = expectedValue;
56+
this.value = value;
57+
this.fileName = fileName;
58+
this.line = line;
4159
this.nodes = nodes;
4260
this.packageData = packageData;
4361
}

0 commit comments

Comments
 (0)