Example #1
0
 /*
  * (non-Javadoc)
  * @see org.xmeta.ThingManager#getThingIndexs()
  */
 public List<ThingIndex> getThingIndexs(String categoryName) {
   Category category = getCategory(categoryName);
   if (category != null) {
     return category.getThingIndexs();
   } else {
     return null;
   }
 }
Example #2
0
 @Override
 public List<ThingIndex> getThingIndexs(String categoryName, String descriptorPath) {
   Category category = getCategory(categoryName);
   if (category != null) {
     return category.getThingIndexs(descriptorPath);
   } else {
     return null;
   }
 }