Skip to content

Instantly share code, notes, and snippets.

@0xRoch
Created November 5, 2011 16:14
Show Gist options
  • Save 0xRoch/1341710 to your computer and use it in GitHub Desktop.
Save 0xRoch/1341710 to your computer and use it in GitHub Desktop.
Calendar cal = new GregorianCalendar();
cal.setTime(new Date());
cal.add(Calendar.DAY_OF_YEAR,-1);
Date oneDayBefore= cal.getTime();
List<User> users = all().filter("lastSeen>", oneDayBefore).fetch();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment