public void reIndex(String[] ids) throws SearchException {
   try {
     PlanItemLocalServiceUtil.reIndex();
   } catch (Exception e) {
     throw new SearchException(e);
   }
 }
 public void reIndex(String className, long classPK) throws SearchException {
   try {
     PlanItemLocalServiceUtil.reIndex(classPK);
   } catch (Exception e) {
     throw new SearchException(e);
   }
 }