Example #1
0
 public LinkedHashMap<Long, Tag> getAllActiveTagsMap(Long pkId) {
   LinkedHashMap<Long, Tag> res = new LinkedHashMap();
   for (Tag tag : getAllActiveTags(pkId)) {
     res.put(tag.getId(), tag);
   }
   return res;
 }