added LastModifiedAware interface

This commit is contained in:
Sebastian Sdorra
2011-02-12 19:55:18 +01:00
parent 8a8ab5f6e6
commit d5c2338d1d
8 changed files with 98 additions and 5 deletions

View File

@@ -387,6 +387,18 @@ public class XmlGroupManager extends AbstractGroupManager
return groups;
}
/**
* Method description
*
*
* @return
*/
@Override
public Long getLastModified()
{
return groupDB.getLastModified();
}
//~--- methods --------------------------------------------------------------
/**

View File

@@ -407,6 +407,18 @@ public class XmlRepositoryManager extends AbstractRepositoryManager
return handlerMap.get(type);
}
/**
* Method description
*
*
* @return
*/
@Override
public Long getLastModified()
{
return repositoryDB.getLastModified();
}
/**
* Method description
*

View File

@@ -403,6 +403,18 @@ public class XmlUserManager extends AbstractUserManager
return users;
}
/**
* Method description
*
*
* @return
*/
@Override
public Long getLastModified()
{
return userDB.getLastModified();
}
//~--- methods --------------------------------------------------------------
/**