Package com.centraview.search

Examples of com.centraview.search.SearchHome


      timeSpanColl.add(new DDNameValue(2, "30 Minutes"));
      timeSpanColl.add(new DDNameValue(3, "15 Minutes"));

      this.put("TimeSpan", timeSpanColl);

      SearchHome sh = (SearchHome)CVUtility.getHomeObject("com.centraview.search.SearchHome",
          "Search");
      Search rmt = sh.create();
      rmt.setDataSource(this.dataSource);
      HashMap hmp = rmt.getTableIdsAndNames();
      this.put("Tables", hmp);

      setSupportLists();
View Full Code Here


  public DataDictionary(String dataSource) throws CommunicationException, NamingException
  {
    this.dataSource = dataSource;
    this.finalMapping = new HashMap();
    SearchHome searchHome = (SearchHome)CVUtility.getHomeObject("com.centraview.search.SearchHome", "Search");
    try
    {
      Search searchRemote = (Search)searchHome.create();
      searchRemote.setDataSource(this.dataSource);
      this.finalMapping = searchRemote.getFinalMapping();
    } catch (Exception e) {
      logger.error("[DataDictionary] Exception thrown.", e);   
    }
View Full Code Here

    // <begins with> 'pune' ";
    //    String primaryType= " EntityID ";
    //    String target = "Entity";

    MasterDictionary mdir = null;
    SearchHome yy = (SearchHome)CVUtility.getHomeObject("com.centraview.search.SearchHome", "Search");
    try
    {
      Search remote = (Search)yy.create();
      remote.setDataSource(this.dataSource);
      mdir = remote.getMasterDictionary();
    } catch (Exception e) {
      logger.error("[getAdvanceQuery] Exception thrown.", e);
    }
View Full Code Here

TOP

Related Classes of com.centraview.search.SearchHome

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.