Skip to content

Commit

Permalink
chore: Add scan dates to release descriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
rsenden committed Sep 11, 2023
1 parent 64d81e2 commit 7d6942f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

package com.fortify.cli.fod.release.helper;

import java.time.LocalDateTime;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.formkiq.graalvm.annotations.Reflectable;
import com.fortify.cli.common.json.JsonNodeHolder;
Expand Down Expand Up @@ -49,6 +51,9 @@ public class FoDReleaseDescriptor extends JsonNodeHolder {
private String staticAnalysisStatusType;
private String dynamicAnalysisStatusType;
private String mobileAnalysisStatusType;
private LocalDateTime staticScanDate;
private LocalDateTime dynamicScanDate;
private LocalDateTime mobileScanDate;

@JsonIgnore public String getQualifiedName() {
return StringUtils.isBlank(microserviceName)
Expand Down

0 comments on commit 7d6942f

Please sign in to comment.