private RemoteCacheManager cacheManager;
private RemoteCache<String, Object> cache;
public FootballManager(Console con) {
this.con = con;
Configuration configuration = new ConfigurationBuilder().addServers(jdgProperty(JDG_HOST) + ":" + jdgProperty(HOTROD_PORT)).build();
cacheManager = new RemoteCacheManager(configuration);
cache = cacheManager.getCache("teams");
if(!cache.containsKey(teamsKey)) {
List<String> teams = new ArrayList<String>();
Team t = new Team("Lakers");