Class ApplicationDependencyVulnerabilitySummary
- java.lang.Object
-
- com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
- com.oracle.bmc.adm.model.ApplicationDependencyVulnerabilitySummary
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20220421") public final class ApplicationDependencyVulnerabilitySummary extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
An application dependency Vulnerability represents a single dependency in the application.An application dependency Vulnerability can be associated with eventual Vulnerabilities. Each application dependency is uniquely defined by a nodeId and lists eventual dependencies on which it depends.
Note: Objects should always be created or deserialized using theApplicationDependencyVulnerabilitySummary.Builder
. This model distinguishes fields that are null because they are unset from fields that are explicitly set to null. This is done in the setter methods of theApplicationDependencyVulnerabilitySummary.Builder
, which maintain a set of all explicitly set fields calledApplicationDependencyVulnerabilitySummary.Builder.__explicitlySet__
. ThehashCode()
andequals(Object)
methods are implemented to take the explicitly set fields into account. The constructor, on the other hand, does not take the explicitly set fields into account (since the constructor cannot distinguish explicit null from unset null).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ApplicationDependencyVulnerabilitySummary.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApplicationDependencyVulnerabilitySummary.Builder
builder()
Create a new builder.boolean
equals(Object o)
List<String>
getApplicationDependencyNodeIds()
List of application dependencies on which this application dependency depends, each identified by its nodeId.String
getGav()
Group Artifact Version (GAV) identifier (Group:Artifact:Version).Boolean
getIsFoundInKnowledgeBase()
Indicates if the artifact is found in the knowledge base, this field is deprecated and will be removed in the future.String
getNodeId()
Unique identifier of an application dependency, for example nodeId1.String
getPurl()
Package URL identifier, e.g.List<Vulnerability>
getVulnerabilities()
List of vulnerabilities for the application dependency.List<String>
getWarnings()
Potential issues in the artifact identifiers (purls) provided by the user, that the user is alerted about.int
hashCode()
ApplicationDependencyVulnerabilitySummary.Builder
toBuilder()
String
toString()
String
toString(boolean includeByteArrayContents)
Return a string representation of the object.
-
-
-
Constructor Detail
-
ApplicationDependencyVulnerabilitySummary
@Deprecated @ConstructorProperties({"gav","purl","nodeId","applicationDependencyNodeIds","vulnerabilities","isFoundInKnowledgeBase","warnings"}) public ApplicationDependencyVulnerabilitySummary(String gav, String purl, String nodeId, List<String> applicationDependencyNodeIds, List<Vulnerability> vulnerabilities, Boolean isFoundInKnowledgeBase, List<String> warnings)
Deprecated.
-
-
Method Detail
-
builder
public static ApplicationDependencyVulnerabilitySummary.Builder builder()
Create a new builder.
-
toBuilder
public ApplicationDependencyVulnerabilitySummary.Builder toBuilder()
-
getGav
public String getGav()
Group Artifact Version (GAV) identifier (Group:Artifact:Version).Example: org.graalvm.nativeimage:svm:21.1.0. “N/A” for non-maven artifacts.
- Returns:
- the value
-
getPurl
public String getPurl()
Package URL identifier, e.g.pkg:maven/org.graalvm.nativeimage/svm@21.1.0
- Returns:
- the value
-
getNodeId
public String getNodeId()
Unique identifier of an application dependency, for example nodeId1.- Returns:
- the value
-
getApplicationDependencyNodeIds
public List<String> getApplicationDependencyNodeIds()
List of application dependencies on which this application dependency depends, each identified by its nodeId.- Returns:
- the value
-
getVulnerabilities
public List<Vulnerability> getVulnerabilities()
List of vulnerabilities for the application dependency.- Returns:
- the value
-
getIsFoundInKnowledgeBase
public Boolean getIsFoundInKnowledgeBase()
Indicates if the artifact is found in the knowledge base, this field is deprecated and will be removed in the future.- Returns:
- the value
-
getWarnings
public List<String> getWarnings()
Potential issues in the artifact identifiers (purls) provided by the user, that the user is alerted about.ADM supports the following warnings: - MISSING_VERSION: Missing version - INCORRECT_FORMAT_VERSION: Version can not be parsed according to the ecosystem - UNKNOWN_ECOSYSTEM: The purl’s ecosystem is unknown to ADM - INCORRECT_FORMAT_EPOCH: Epoch qualifier can not be parsed according to the ecosystem - MISSING_DISTRO: The distro qualifier is required for the ecosystem, but was not provided in the purl - UNKNOWN_DISTRO: ADM does not have data for the provided distro value for the given ecosystem - MISSING_ARCH: The arch qualifier is required for the ecosystem and distro, but was not provided in the purl - UNKNOWN_ARCH: ADM does not have data for the provided arch value for the given ecosystem and distro - EPOCH_VALUE_MISMATCH: Epoch value in qualifier is not the same as the epoch value in version - INVALID_PURL: The provided PURL could not be parsed
- Returns:
- the value
-
toString
public String toString()
- Overrides:
toString
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
toString
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.- Parameters:
includeByteArrayContents
- true to include the full contents of byte arrays- Returns:
- string representation
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
-