19 package com.basistech.df.cybertriage.autopsy.ctapi.json;
21 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
22 import com.fasterxml.jackson.annotation.JsonProperty;
23 import javax.annotation.Nonnull;
24 import javax.annotation.Nullable;
30 @JsonIgnoreProperties(ignoreUnknown =
true)
42 @JsonProperty(
"malware")
45 @JsonProperty("correlation")
49 @JsonProperty("md5_hash")
50 private String md5HashValue;
53 @JsonProperty("sha1_hash")
54 private String sha1HashValue;
56 public String getMd5HashValue() {
65 this.md5HashValue = md5HashValue;
69 this.sha1HashValue = sha1HashValue;
77 this.malwareResult = malwareResult;
81 return correlationResult;
85 this.correlationResult = correlationResult;
91 +
"status=" + malwareResult.getStatus()
92 +
", malwareDescription=" + malwareResult.getMalwareDescription()
93 +
", score=" + malwareResult.getCTScore()
94 +
", md5HashValue=" + md5HashValue
95 +
", sha1HashValue=" + sha1HashValue
96 +
", firstSeen=" + malwareResult.getFirstAnalyzedDate()
97 +
", lastSeen=" + malwareResult.getLastAnalyzedDate()
98 +
", statusDescription=" + malwareResult.getStatusDescription()
99 +
", metadata=" + malwareResult.getMetadata()
CorrelationResultBean getCorrelationResult()
void setMalwareResult(MalwareResultBean malwareResult)
void setCorrelationResult(CorrelationResultBean correlationResult)
MalwareResultBean getMalwareResult()
String getSha1HashValue()
void setMd5HashValue(String md5HashValue)
void setSha1HashValue(String sha1HashValue)