Package org.archive.wayback.webapp

Examples of org.archive.wayback.webapp.CustomUserResourceIndex


     
      if (indexBeanName == null) {
        indexBeanName = indexKey; 
      }
           
      CustomUserResourceIndex index =
          (CustomUserResourceIndex)SpringReader.getCurrentContext().getBean(indexBeanName, CustomUserResourceIndex.class);
     
      return index;
    } catch (BeansException e) {
      return null;
View Full Code Here


//    return (CustomUserResourceIndex)object;
  }
 
  public String getCustomResourcePaths(String indexName, int fieldNum)
  {
    CustomUserResourceIndex cri = getCustomResourceIndex(indexName);
    if (cri == null) {
      return "";
    }
    return cri.getCustomResourcesPathsAsJSON(getWbRequest(), getReplayPrefix(), fieldNum);
  }
View Full Code Here

TOP

Related Classes of org.archive.wayback.webapp.CustomUserResourceIndex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.