aboutsummaryrefslogtreecommitdiff
path: root/juick-xmpp-wip/src/main/java/com/juick/components/controllers/helpers/RouterStatus.java
blob: 11148dd79acd0cd309ec97c22387e26dc8436978 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    }
}