stubbles.json.proxy = {};

stubbles.json.proxy.SearchService = function(clientObj) {
    this.dispatcher = new stubbles.json.rpc.Client(clientObj);
};
stubbles.json.proxy.SearchService.prototype.search = function() {
    return this.dispatcher.doCall('SearchService.search', arguments);
};
