Package com.zerog.ia.api.pub.registry
Class Component
- java.lang.Object
-
- com.zerog.ia.api.pub.registry.SoftwareObject
-
- com.zerog.ia.api.pub.registry.Component
-
public class Component extends SoftwareObject
Entity that represents a Component of the Global Registry.
- See Also:
SoftwareObject
,Product
-
-
Constructor Summary
Constructors Constructor Description Component(java.lang.String name, java.lang.String uniqueID, java.lang.String location, java.lang.String version, java.lang.String vendor)
Creates a new Component with the specified arguments.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getVendor()
The vendor of the Component.-
Methods inherited from class com.zerog.ia.api.pub.registry.SoftwareObject
getLocation, getName, getUniqueID, getVersion
-
-
-
-
Constructor Detail
-
Component
public Component(java.lang.String name, java.lang.String uniqueID, java.lang.String location, java.lang.String version, java.lang.String vendor)
Creates a new Component with the specified arguments.- Parameters:
name
- The name of the Component.uniqueID
- The uniqueID of the Component. For example: f2e0e6a6-1eec-11b2-adcb-d5eb84d8b90a.location
- The location where the Component is installed in.version
- The version of the Component. For example: 1.5.12.2427vendor
- The vendor of the Component.
-
-