Package org.netxms.client
Class SoftwarePackage
- java.lang.Object
-
- org.netxms.client.SoftwarePackage
-
public class SoftwarePackage extends Object
Software package information
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedSoftwarePackage(org.netxms.base.NXCPMessage msg, long baseId)Create software package information from NXCP message
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetData()Get value of custom data field.StringgetDescription()DategetInstallDate()longgetInstallDateMs()StringgetName()StringgetSupportUrl()StringgetVendor()StringgetVersion()voidsetData(Object data)Set custom data field.
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
getDescription
public String getDescription()
- Returns:
- the description
-
getVersion
public String getVersion()
- Returns:
- the version
-
getVendor
public String getVendor()
- Returns:
- the vendor
-
getSupportUrl
public String getSupportUrl()
- Returns:
- the supportUrl
-
getInstallDate
public Date getInstallDate()
- Returns:
- the installDate
-
getInstallDateMs
public long getInstallDateMs()
- Returns:
- The installation date in ms
-
getData
public Object getData()
Get value of custom data field.- Returns:
- the data
-
setData
public void setData(Object data)
Set custom data field.- Parameters:
data- the data to set
-
-