William Goff
William Goff
Java code to produce the attributes (extensibleType). ``` List attributes = new ArrayList(); Attribute packageManagerAttribute = new Attribute("unixPackageManager", packageManager); attributes.add(packageManagerAttribute); ExtensibleType et = new ExtensibleType("manager", "packageManager", attributes); List ets =...
Any chance we can get a base constructor (and getters for fields in) in the ExtensibleType class. This will allow the user of other generators, such as Jackson to be...
Sorry. Not getters, but setters. For jackson to work correctly we would need getters and setters. I actually have a clone of the ExtensibleType class, but just had to make...
On another note, if you are interested. I created a standalone application (java) that can be used to produce a Bom for Unix environments. To include Alpine, Centos, Debian, Redhat,...
I can also just give you my changes to the ExtensibleType class if you would like? Just let me know.