Package com.metratec.lib.inventory.event
Class InventoryChangedEvent<T extends RfidTag>
- java.lang.Object
-
- com.metratec.lib.rfidreader.event.RfidEvent
-
- com.metratec.lib.inventory.event.InventoryChangedEvent<T>
-
- Type Parameters:
T
-RfidTag
instance
- All Implemented Interfaces:
java.io.Serializable
public class InventoryChangedEvent<T extends RfidTag> extends RfidEvent
- Author:
- man
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InventoryChangedEvent(java.lang.String identifier, java.lang.Long timestamp, java.util.List<T> tags, java.util.List<T> newTags, java.util.List<T> lostTags)
InventoryChangedEvent(java.lang.String identifier, java.util.List<T> tags, java.util.List<T> newTags, java.util.List<T> lostTags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<T>
getLostTags()
java.util.List<T>
getNewTags()
java.util.List<T>
getTags()
-
Methods inherited from class com.metratec.lib.rfidreader.event.RfidEvent
getIdentifier, getTimestamp
-
-
-
-
Constructor Detail
-
InventoryChangedEvent
public InventoryChangedEvent(java.lang.String identifier, java.util.List<T> tags, java.util.List<T> newTags, java.util.List<T> lostTags)
- Parameters:
identifier
- identifiertags
-List
with current tag idsnewTags
-List
with new tag idslostTags
-List
with lost tag ids
-
InventoryChangedEvent
public InventoryChangedEvent(java.lang.String identifier, java.lang.Long timestamp, java.util.List<T> tags, java.util.List<T> newTags, java.util.List<T> lostTags)
- Parameters:
identifier
- identifiertimestamp
- timestamptags
-List
with current tag idsnewTags
-List
with new tag idslostTags
-List
with lost tag ids
-
-