aboutsummaryrefslogtreecommitdiff
path: root/juick-xmpp-wip/src/main/java/com/juick/components/controllers/helpers/RouterStatus.java
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2017-10-31 01:32:13 +0300
committerGravatar Vitaly Takmazov2017-10-31 01:32:46 +0300
commit20e19b4242f888aafe3c55f9dabe3af46728cbab (patch)
treef6733154952d2ddca5435cfc900369df26114a0f /juick-xmpp-wip/src/main/java/com/juick/components/controllers/helpers/RouterStatus.java
parent240a375ecdeb7592d8765f0edb7d2fd67c50ac10 (diff)
gradle: farm configuration
Diffstat (limited to 'juick-xmpp-wip/src/main/java/com/juick/components/controllers/helpers/RouterStatus.java')
-rw-r--r--juick-xmpp-wip/src/main/java/com/juick/components/controllers/helpers/RouterStatus.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/juick-xmpp-wip/src/main/java/com/juick/components/controllers/helpers/RouterStatus.java b/juick-xmpp-wip/src/main/java/com/juick/components/controllers/helpers/RouterStatus.java
new file mode 100644
index 00000000..11148dd7
--- /dev/null
+++ b/juick-xmpp-wip/src/main/java/com/juick/components/controllers/helpers/RouterStatus.java
@@ -0,0 +1,17 @@
+package com.juick.components.controllers.helpers;
+
+import com.juick.xmpp.StreamComponentServer;
+
+import java.util.List;
+
+public class RouterStatus {
+ private List<StreamComponentServer> connections;
+
+ public List<StreamComponentServer> getConnections() {
+ return connections;
+ }
+
+ public void setConnections(List<StreamComponentServer> connections) {
+ this.connections = connections;
+ }
+}