function ServerState(name, isWorking)
{
    this.isWorking = isWorking;
    this.name = name;

    this.WORLDSERVER_NAME = "World server";
    this.HISTORYSERVER_NAME = "History server";
    this.CONCENTRATOR_NAME = "Concentrator";
}
