io.github.algomaster99.terminator.commons.cyclonedx.ComponentEvidence Maven / Gradle / Ivy
package io.github.algomaster99.terminator.commons.cyclonedx;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Evidence
*
* Provides the ability to document evidence collected through various forms of extraction or analysis.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"identity",
"occurrences",
"callstack",
"licenses",
"copyright"
})
@Generated("jsonschema2pojo")
public class ComponentEvidence {
/**
* Evidence that substantiates the identity of a component.
*
*/
@JsonProperty("identity")
@JsonPropertyDescription("Evidence that substantiates the identity of a component.")
private Identity identity;
/**
* Occurrences
*
* Evidence of individual instances of a component spread across multiple locations.
*
*/
@JsonProperty("occurrences")
@JsonPropertyDescription("Evidence of individual instances of a component spread across multiple locations.")
private List occurrences = new ArrayList();
/**
* Evidence of the components use through the callstack.
*
*/
@JsonProperty("callstack")
@JsonPropertyDescription("Evidence of the components use through the callstack.")
private Callstack callstack;
/**
* License Choice
*
* EITHER (list of SPDX licenses and/or named licenses) OR (tuple of one SPDX License Expression)
*
*/
@JsonProperty("licenses")
@JsonPropertyDescription("EITHER (list of SPDX licenses and/or named licenses) OR (tuple of one SPDX License Expression)")
private List