NAME
SBOM::CycloneDX::Enum::LicenseType - License Type
SYNOPSIS
use SBOM::CycloneDX::Enum qw(LICENSE_TYPE);
say LICENSE_TYPE->APPLIANCE;
use SBOM::CycloneDX::Enum::LicenseType;
say SBOM::CycloneDX::Enum::LicenseType->CAL;
use SBOM::CycloneDX::Enum::LicenseType qw(:all);
say PERPETUAL;
DESCRIPTION
SBOM::CycloneDX::Enum::LicenseType is ENUM package used by SBOM::CycloneDX.
CONSTANTS
ACADEMIC, A license that grants use of software solely for the purpose of education or research.
APPLIANCE, A license covering use of software embedded in a specific piece of hardware.
CLIENT_ACCESS, A Client Access License (CAL) allows client computers to access services provided by server software.
CONCURRENT_USER, A Concurrent User license (aka floating license) limits the number of licenses for a software application and licenses are shared among a larger number of users.
CORE_POINTS, A license where the core of a computer's processor is assigned a specific number of points.
CUSTOM_METRIC, A license for which consumption is measured by non-standard metrics.
DEVICE, A license that covers a defined number of installations on computers and other types of devices.
EVALUATION, A license that grants permission to install and use software for trial purposes.
NAMED_USER, A license that grants access to the software to one or more pre-defined users.
NODE_LOCKED, A license that grants access to the software on one or more pre-defined computers or devices.
OEM, An Original Equipment Manufacturer license that is delivered with hardware, cannot be transferred to other hardware, and is valid for the life of the hardware.
PERPETUAL, A license where the software is sold on a one-time basis and the licensee can use a copy of the software indefinitely.
PROCESSOR_POINTS, A license where each installation consumes points per processor.
SUBSCRIPTION, A license where the licensee pays a fee to use the software or service.
USER, A license that grants access to the software or service by a specified number of users.
OTHER, Another license type.
SUPPORT
Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker at https://github.com/giterlizzi/perl-SBOM-CycloneDX/issues. You will be notified automatically of any progress on your issue.
Source Code
This is open source software. The code repository is available for public review and contribution under the terms of the license.
https://github.com/giterlizzi/perl-SBOM-CycloneDX
git clone https://github.com/giterlizzi/perl-SBOM-CycloneDX.git
AUTHOR
Giuseppe Di Terlizzi <gdt@cpan.org>
LICENSE AND COPYRIGHT
This software is copyright (c) 2025-2026 by Giuseppe Di Terlizzi.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.