* @throws WrongOrderException
*/
public boolean isUpToDate(String identifyer, Object timestamp, String timestampattribute, Resolvable object)
throws WrongOrderException {
if (!"".equals(this.lastIdentifyer) && this.lastIdentifyer.compareTo(identifyer) < 0) {
throw new WrongOrderException();
}
return checkUpToDate(identifyer, timestamp, timestampattribute, object);
}