object SBOM extends Serializable
- Alphabetic
- By Inheritance
- SBOM
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- type BOMFormat = SBOM.BOMFormat.Value
- case class Component(bom-ref: String, type: Type, name: String, group: Option[String], version: Option[String], purl: Option[String], properties: List[Property], licenses: Option[List[LicenseWrapper]]) extends Product with Serializable
A software or hardware component used to build a software artifact.
A software or hardware component used to build a software artifact.
- name
The component name.
- group
The component group.
- version
The component version.
- purl
The package URL. See https://github.com/package-url/purl-spec
- properties
A list of component properties as name-value pairs.
- licenses
Component licenses.
- case class Dependency(ref: String, dependsOn: List[String]) extends Product with Serializable
Documents a dependency relationship between components.
Documents a dependency relationship between components.
- ref
The reference to a component. Same as Component.`bom-ref`.
- dependsOn
References to other components this component depends on.
- case class License(id: Option[String], name: Option[String]) extends Product with Serializable
A software license.
A software license.
id
andname
cannot both be undefined. - case class LicenseWrapper(license: License) extends Product with Serializable
- case class Metadata(timestamp: Instant, tools: Tools, component: Component) extends Product with Serializable
SBOM metadata.
SBOM metadata.
- timestamp
When the SBOM file was generated.
- tools
The tools used in the SBOM creation.
- component
The artifact that the SBOM describes.
- case class Property(name: String, value: String) extends Product with Serializable
A name-value pair representing a piece of information not officially supported by the SBOM schema.
- case class Tool(type: Type, name: String, group: String, version: String) extends Product with Serializable
A tool used in SBOM generation.
A tool used in SBOM generation. E.g. Trivy.
- name
The tool name.
- group
The tool group. E.g. com.codacy.
- version
The tool version.
- case class Tools(components: List[Tool]) extends Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object BOMFormat extends Enumeration
- object Component extends Serializable
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)