summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/communication/ClientRpc.java
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-08-17 13:32:54 +0300
committerJohannes Dahlström <johannesd@vaadin.com>2012-08-17 13:32:54 +0300
commit47a0326c2fb2d6d8621e7a6fbfa2f011a48e15a4 (patch)
tree416685c3912f716eb09497cc7cce071786fe2d12 /src/com/vaadin/shared/communication/ClientRpc.java
parent8e3aa0a9823556896f1af00599c3e79ca2ce2e01 (diff)
parent9bdbd7efbb7fa599910dc85182968334e4dced78 (diff)
downloadvaadin-framework-47a0326c2fb2d6d8621e7a6fbfa2f011a48e15a4.tar.gz
vaadin-framework-47a0326c2fb2d6d8621e7a6fbfa2f011a48e15a4.zip
Merge branch 'master' into root-cleanup
Conflicts: server/src/com/vaadin/terminal/DeploymentConfiguration.java server/src/com/vaadin/terminal/gwt/server/AbstractApplicationPortlet.java server/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java server/src/com/vaadin/terminal/gwt/server/AbstractDeploymentConfiguration.java
Diffstat (limited to 'src/com/vaadin/shared/communication/ClientRpc.java')
-rw-r--r--src/com/vaadin/shared/communication/ClientRpc.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/com/vaadin/shared/communication/ClientRpc.java b/src/com/vaadin/shared/communication/ClientRpc.java
deleted file mode 100644
index d49bc05260..0000000000
--- a/src/com/vaadin/shared/communication/ClientRpc.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
-@VaadinApache2LicenseForJavaFiles@
- */
-
-package com.vaadin.shared.communication;
-
-import java.io.Serializable;
-
-/**
- * Interface to be extended by all server to client RPC interfaces.
- *
- * On the server side, proxies of the interface can be obtained from
- * AbstractComponent. On the client, RPC implementations can be registered with
- * AbstractConnector.registerRpc().
- *
- * Note: Currently, each RPC interface may not contain multiple methods with the
- * same name, even if their parameter lists would differ.
- *
- * @since 7.0
- */
-public interface ClientRpc extends Serializable {
-
-}