/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.essar.automation.dhaval.client;

import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;

/**
 *
 * @author dhaval
 */
@RemoteServiceRelativePath("quoteService")
public interface RandomQuoteService extends RemoteService{

    String getQuote();
}
