diff --git a/cyclonedx/model/component.py b/cyclonedx/model/component.py index 5b292d25..f553d5c0 100644 --- a/cyclonedx/model/component.py +++ b/cyclonedx/model/component.py @@ -1185,8 +1185,6 @@ def bom_ref(self) -> BomRef: An optional identifier which can be used to reference the component elsewhere in the BOM. Every bom-ref MUST be unique within the BOM. - If a value was not provided in the constructor, a UUIDv4 will have been assigned. - Returns: `BomRef` """ diff --git a/cyclonedx/model/contact.py b/cyclonedx/model/contact.py index 5a004f33..d9367e95 100644 --- a/cyclonedx/model/contact.py +++ b/cyclonedx/model/contact.py @@ -68,8 +68,6 @@ def bom_ref(self) -> Optional[BomRef]: An optional identifier which can be used to reference the component elsewhere in the BOM. Every bom-ref MUST be unique within the BOM. - If a value was not provided in the constructor, a UUIDv4 will have been assigned. - Returns: `BomRef` """ diff --git a/cyclonedx/model/definition.py b/cyclonedx/model/definition.py index 0bde33c3..417fd0c1 100644 --- a/cyclonedx/model/definition.py +++ b/cyclonedx/model/definition.py @@ -81,7 +81,8 @@ def __repr__(self) -> str: def bom_ref(self) -> BomRef: """ An optional identifier which can be used to reference the standard elsewhere in the BOM. Every bom-ref MUST be - unique within the BOM. If a value was not provided in the constructor, a UUIDv4 will have been assigned. + unique within the BOM. + Returns: `BomRef` """ diff --git a/cyclonedx/model/service.py b/cyclonedx/model/service.py index d4a89fe4..9e6af564 100644 --- a/cyclonedx/model/service.py +++ b/cyclonedx/model/service.py @@ -95,8 +95,6 @@ def bom_ref(self) -> BomRef: An optional identifier which can be used to reference the service elsewhere in the BOM. Uniqueness is enforced within all elements and children of the root-level bom element. - If a value was not provided in the constructor, a UUIDv4 will have been assigned. - Returns: `BomRef` unique identifier for this Service """ diff --git a/cyclonedx/model/vulnerability.py b/cyclonedx/model/vulnerability.py index ae859d95..0b7cdc1d 100644 --- a/cyclonedx/model/vulnerability.py +++ b/cyclonedx/model/vulnerability.py @@ -989,8 +989,6 @@ def bom_ref(self) -> BomRef: """ Get the unique reference for this Vulnerability in this BOM. - If a value was not provided in the constructor, a UUIDv4 will have been assigned. - Returns: `BomRef` """