Package com.gentics.cr.exceptions

Examples of com.gentics.cr.exceptions.WrongOrderException


   * @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);
  }
View Full Code Here

TOP

Related Classes of com.gentics.cr.exceptions.WrongOrderException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.