package com.juick.components.s2s; /** * * @author ugnich */ public class CacheEntry { public String hostname; public long tsCreated; public long tsUpdated; public String xml; public CacheEntry(String hostname, String xml) { this.hostname = hostname; this.tsCreated = this.tsUpdated = System.currentTimeMillis(); this.xml = xml; } }