示例#1
0
 /**
  * get the cached info for the specified username
  *
  * @param username String
  * @param protocol String
  * @return array qith all the info
  * @throws EntityException
  */
 public SyncItemInfoAdmin[] getCachedInfo(String username, String protocol)
     throws EntityException {
   SyncItemInfoAdmin[] infos = null;
   try {
     infos = cdao.getCachedInfo(username, protocol);
   } catch (DBAccessException ee) {
     throw new EntityException("Error getting Cache Info for Administration", ee);
   }
   return infos;
 }