package com.servlet.utilities; import java.util.HashMap; import java.util.Map; /** * Class RssiSample * */ public class RssiSample { private Map rssi; /** Map containing the MAC address of the waypoint and the RSSI value associated with it */ public RssiSample(Map mapGotchas){ this.rssi = mapGotchas; } public Map getRssi() { return rssi; } public void setRssi(HashMap rssi) { this.rssi = rssi; } }