Is it possible to find the difference (preferably expressed in terms of the number of days) between a java.util.Date and a Joda-Time DateTime?
class ReminderInterval{
//it will return a last login date(java.util.Date)
Date lastDate=Obj.getAccepted();
//it is Joda-Time type
DateTime currentDate=new DateTime();
}