Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/main/java/com/checkmarx/ast/results/result/Data.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ public class Data {
String resultHash;
String languageName;
String description;
String platform;
String issueType;
String expectedValue;
String value;
String fileName;
int line;
List<Node> nodes;
List<PackageData> packageData;

Expand All @@ -30,6 +36,12 @@ public Data(@JsonProperty("queryId") String queryId,
@JsonProperty("resultHash") String resultHash,
@JsonProperty("languageName") String languageName,
@JsonProperty("description") String description,
@JsonProperty("platform") String platform,
@JsonProperty("issueType") String issueType,
@JsonProperty("expectedValue") String expectedValue,
@JsonProperty("value") String value,
@JsonProperty("filename") String fileName,
@JsonProperty("line") int line,
@JsonProperty("nodes") List<Node> nodes,
@JsonProperty("packageData") List<PackageData> packageData) {
this.queryId = queryId;
Expand All @@ -38,6 +50,12 @@ public Data(@JsonProperty("queryId") String queryId,
this.resultHash = resultHash;
this.languageName = languageName;
this.description = description;
this.platform = platform;
this.issueType = issueType;
this.expectedValue = expectedValue;
this.value = value;
this.fileName = fileName;
this.line = line;
this.nodes = nodes;
this.packageData = packageData;
}
Expand Down