package com.juick.ws.api; /** * Created by vitalyster on 25.07.2016. */ public class WebSocketStatus { private int clientsCount; public WebSocketStatus(int count) { clientsCount = count; } public int getClientsCount() { return clientsCount; } }