Package org.spdx.maven.utils
Class IdGenerator
java.lang.Object
org.spdx.maven.utils.IdGenerator
Singleton class to generate IDs in a reproducible fashion.
The IDs are generated by hashing a string which should be based on a property(s) of the element for which the ID is being created. That property should be reproducible across different builds in different build environments.
The IDs will always be unique - if two calls are made to create ID with the same string, then a counter will be appended.
-
Method Summary
Modifier and TypeMethodDescriptiongenerateId
(String reproducibleString) Generate a unique IDstatic IdGenerator
Get the singleton instance
-
Method Details
-
getIdGenerator
Get the singleton instance- Returns:
- instance of IdGenerator
-
generateId
Generate a unique ID- Parameters:
reproducibleString
- A string which should be build reproducible for the ELement this ID is being generated for- Returns:
- unique ID based on the reproducibleString
-