/******************************************************************************* * Copyright (c) 2014 Bert De Geyter (https://github.com/TheHolyWaffle). * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html * * Contributors: * Bert De Geyter (https://github.com/TheHolyWaffle) ******************************************************************************/ package com.github.theholywaffle.lolchatapi; /** * This and all the files in the module have been developed by Bert De Geyter (https://github * .com/TheHolyWaffle) and are protected by the Apache GPLv3 license. */ public enum ChatServer { //Chat suggestions taken from https://github // .com/TheHolyWaffle/League-of-Legends-XMPP-Chat-Library/blob/master/src/main/java/com // /github/theholywaffle/lolchatapi/ChatServer.java EUW("chat.euw1.lol.riotgames.com"), NA("chat.na2.lol.riotgames.com"), EUNE("chat.eun1.lol.riotgames.com"), TR("chat.tr.lol.riotgames.com"), RU("chat.ru.lol.riotgames.com"), BR("chat.br.lol.riotgames.com"), LAN("chat.la1.lol.riotgames.com"), KR("chat.kr.lol.riotgames.com"), OCE("chat.oc1.lol.riotgames.com"), LAS("chat.la2.lol.riotgames.com"); // TW("chattw.lol.garenanow.com"), // TH("chatth.lol.garenanow.com"), // PH("chatph.lol.garenanow.com"), // VN("chatvn.lol.garenanow.com"); String host; ChatServer(String host) { this.host = host; } }