You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2014/08/12 10:47:27 UTC

[6/8] git commit: WICKET-5670 org.apache.wicket.protocol.ws.api.registry.IKey should be Serializable (IClusterable)

WICKET-5670 org.apache.wicket.protocol.ws.api.registry.IKey should be Serializable (IClusterable)


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/a01cd9d9
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/a01cd9d9
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/a01cd9d9

Branch: refs/heads/master
Commit: a01cd9d9353a1749ee85cf248ab71871e230f873
Parents: 2d30f0d
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Aug 11 15:28:52 2014 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Aug 11 15:28:52 2014 +0200

----------------------------------------------------------------------
 .../java/org/apache/wicket/protocol/ws/api/registry/IKey.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/a01cd9d9/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/registry/IKey.java
----------------------------------------------------------------------
diff --git a/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/registry/IKey.java b/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/registry/IKey.java
index e05e76e..b0774dc 100644
--- a/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/registry/IKey.java
+++ b/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/registry/IKey.java
@@ -16,9 +16,11 @@
  */
 package org.apache.wicket.protocol.ws.api.registry;
 
+import org.apache.wicket.util.io.IClusterable;
+
 /**
  * A marker interface for keys that are used to find a web socket
  * connection in {@link IWebSocketConnectionRegistry}
  */
-public interface IKey
+public interface IKey extends IClusterable
 {}