Package org.netxms.client.mt
Class MappingTableEntry
- java.lang.Object
-
- org.netxms.client.mt.MappingTableEntry
-
public class MappingTableEntry extends Object
Entry in mapping table
-
-
Constructor Summary
Constructors Modifier Constructor Description MappingTableEntry(String key, String value, String description)protectedMappingTableEntry(org.netxms.base.NXCPMessage msg, long baseId)Create entry from NXCP message
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()StringgetKey()StringgetValue()voidsetDescription(String description)voidsetKey(String key)voidsetValue(String value)
-
-
-
Method Detail
-
getKey
public final String getKey()
- Returns:
- the key
-
getValue
public final String getValue()
- Returns:
- the value
-
getDescription
public final String getDescription()
- Returns:
- the description
-
setKey
public final void setKey(String key)
- Parameters:
key- the key to set
-
setValue
public final void setValue(String value)
- Parameters:
value- the value to set
-
setDescription
public final void setDescription(String description)
- Parameters:
description- the description to set
-
-