Subversion Repositories SmartDukaan

Rev

Rev 11904 | Rev 12169 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11904 Rev 11909
Line 36... Line 36...
36
    public String index() throws TException{
36
    public String index() throws TException{
37
        return "index";
37
        return "index";
38
    }
38
    }
39
    
39
    
40
    public String getCompData() throws TException{
40
    public String getCompData() throws TException{
41
        Client catalogClient = new CatalogClient().getClient();
41
        Client catalogClient = new CatalogClient("catalog_service_server_host_amazon","catalog_service_server_port").getClient();
42
        setPdData(catalogClient.getAllPrivateDealsComparison());
42
        setPdData(catalogClient.getAllPrivateDealsComparison());
43
        return "private-deals-comp-data";
43
        return "private-deals-comp-data";
44
    }
44
    }
45
 
45
 
46
    
46