package org.radargun.utils; /** * Class that stores timestamp. * * @author Radim Vansa <rvansa@redhat.com> */ public interface Timestamped { /** * @return Stored (epoch time) timestamp, in milliseconds. */ long getTimestamp(); }