Packages

object SBOM extends Serializable

Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SBOM
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type BOMFormat = SBOM.BOMFormat.Value
  2. 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.

  3. 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.

  4. case class License(id: Option[String], name: Option[String]) extends Product with Serializable

    A software license.

    A software license.

    id and name cannot both be undefined.

  5. case class LicenseWrapper(license: License) extends Product with Serializable
  6. 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.

  7. 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.

  8. 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.

  9. case class Tools(components: List[Tool]) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. object BOMFormat extends Enumeration
  20. object Component extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped