aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/widgetset/client/gwtrpc/GwtRpcServiceTest.java
blob: d2da76f91f9acafe5168a91db2a1d620df42624e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vaadin.tests.widgetset.client.gwtrpc;

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

/**
 * Test GWT RPC in Vaadin DevMode.
 *
 * @author Vaadin Ltd
 */
@RemoteServiceRelativePath("GwtRpcTest")
public interface GwtRpcServiceTest extends RemoteService {

    /*
     * Dummy method to verify if RPC works.
     */
    String giveMeThat(String that, String haveThis);

}