1. Рады видеть Вас на русскоязычном форуме TeamSpeak!

    У нас Вы можете скачать последнюю версию:

    Перед регистрацией рекомендуем ознакомиться

    с Правилами форума.

    Присоединяйтесь! Учите и обучайтесь!

    Скрыть объявление
  2. Новая группа "Новичок" на нашем форуме!

    Новые пользователи будут попадать в группу "Новичок".

    Это сделано для того чтобы "Новички" ознакомились с форумом, так как в большинстве случаев проблема с которой вы хотите обратиться уже обсуждалась.

    Перейти в тему обсуждения
    Быстрый переход в группу Пользователь
  3. VPS/VDS и дедикейт сервера в аренду с DDoS защитой

    • Низкий пинг
    • Действующий SLA
    • Рублевые цены без привязки к курсу валют

    Бесплатный тестовый период VPS-OpenVZ

    Попробовать

Интеграция JTS3ServerQuery - Java Server Query Library 2.0.6

библиотека запросов к серверу, написанная на Java SE 5

  1. JTS3ServerQuery - Java Server Query Library 2.0.6

    PaCTa
    Код:
    Version 2.0.6 (20.11.2016)
    + Added getCurrentQueryClientDatabaseID() and getCurrentQueryClientUniqueID()
    o Updated API documentation.
    
    Version 2.0.5 (31.08.2016)
    + Added LISTMODE_CHANNELGROUPLIST to get a list of channel groups.
    - Bugfix: If the query client was moved by drag and drop with an TS3 client, the query library did not detected the changed channel.
              Now getCurrentQueryClientChannelID() will return the right channel id.
              Notice: This detection only works, if the EVENT_MODE_CHANNEL was registered with channel id 0 using addEventNotify(int, int).
                      This is not done by this library to keep full control in your hands.
    o Updated API documentation.
  2. JTS3ServerQuery - Java Server Query Library 2.0.4

    PaCTa
    Код:
    Version 2.0.4 (02.04.2016)
    + If the TS3 server sends an notifyclient event twice, this library drop the second line now.
    o Updated API documentation.
  3. JTS3ServerQuery - Java Server Query Library 2.0.3

    PaCTa
    Код:
    Version 2.0.3 (31.10.2015)
    ! Method parseLine() throws a NullPointerException now, if the given argument is null (same behavior like parseRawData()).
    + Added new method getClientDBIDFromUID() to get the client database id of a client unique id.
    + Added new list mode ServerGroupsByClientID to getList() method.
      With this list mode you can request a list of server groups of a client.
    o Updated the JTS3ServerQueryExample to show the new changes, also a new chat command !myservergroups.
    o Updated API documentation.
    
    Version 2.0.2 (06.07.2015)
    + Added new method searchClientDB() to search in the TS3 client database using client name or unique id.
    + Added new info mode ClientDBInfo to getInfo() method.
      This allows you to request all the client information stored in the TS3 client database.
    o Updated API documentation.
    
    Version 2.0.1 (04.07.2015)
    + Added ServerGroupClientList to getList() method.
      This allows you to request a list of clients of a specified server group.
    o Updated API documentation.
  4. JTS3ServerQuery - Java Server Query Library 2.0 Final

    PaCTa
    Version 2.0 Final (16.11.2014)
    ! Removed deprecated method: loginTS3(String loginname, String password, String displayName)
    Use loginTS3(String loginname, String password) followed by setDisplayName(String displayName) instead!
    ! Complete redesign of the error handling of this library.
    Introduced the TS3ServerQueryException with own methods to request single information of this Exception.
    All methods throw a IllegalStateException, IllegalArgumentException or the new TS3ServerQueryException.
    IllegalStateException -> Not connected to TS3 server or an invalid response from server received.
    IllegalArgumentException -> An argument don't match the requirements.
    TS3ServerQueryException -> The TS3 server returned an error code/message.
    + Added new method getCurrentQueryClientName() to request the current query client name.
    + Added new method getCurrentQueryClientServerPort() to request the TS3 virtual server port.
    o Made parseLine() method public for parsing single line responses.
    o Updated API documentation.