aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/communication/ServerRpc.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/shared/communication/ServerRpc.java')
-rw-r--r--src/com/vaadin/shared/communication/ServerRpc.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/com/vaadin/shared/communication/ServerRpc.java b/src/com/vaadin/shared/communication/ServerRpc.java
new file mode 100644
index 0000000000..5ee42a4bef
--- /dev/null
+++ b/src/com/vaadin/shared/communication/ServerRpc.java
@@ -0,0 +1,15 @@
+/*
+@VaadinApache2LicenseForJavaFiles@
+ */
+
+package com.vaadin.shared.communication;
+
+import java.io.Serializable;
+
+/**
+ * Interface to be extended by all client to server RPC interfaces.
+ *
+ * @since 7.0
+ */
+public interface ServerRpc extends Serializable {
+}