Package com.metratec.lib.inventory
Class SimpleInventory
- java.lang.Object
-
- com.metratec.lib.inventory.SimpleInventory
-
public class SimpleInventory extends Object
Simple inventory implementation - designed for update an inventory with a list of all transponder. Than you can get the added and removed transponder.- Author:
- mn
-
-
Constructor Summary
Constructors Constructor Description SimpleInventory()
Create an new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getAddedTags()
List<String>
getInventory()
List<String>
getRemovedTags()
void
updateInventory(List<String> tags)
update the current inventory and calculate the removed and added tags
-
-
-
Constructor Detail
-
SimpleInventory
public SimpleInventory()
Create an new instance.
Usage:
update an inventory with a list of all transponder (updateInventory(List)
. Than you can get the added (getAddedTags()
and removed (getRemovedTags()
transponder.
-
-