Exemple #1
0
 @Override
 public List<LockEntry> adminOnlyGetLockEntries() {
   final List<LockImpl> li = clusterLockManager.getAllLocks();
   final List<LockEntry> res = new ArrayList<LockEntry>(li.size());
   for (final LockImpl impl : li) {
     res.add(new LockEntry(impl.getAsset(), impl.getCreationDate().getTime(), impl.getOwner()));
   }
   return res;
 }