Constant Field Values
Contents
tigase.muc.*
-
tigase.muc.MUCComponent Modifier and Type Constant Field Value public static final StringDEFAULT_ROOM_CONFIG_KEY"default_room_config"public static final StringDEFAULT_ROOM_CONFIG_PREFIX_KEY"default_room_config/"public static final StringLOG_DIR_KEY"room-log-directory"public static final StringMESSAGE_FILTER_ENABLED_KEY"message-filter-enabled"public static final StringMUC_ALLOW_CHAT_STATES_KEY"muc-allow-chat-states"public static final StringMUC_LOCK_NEW_ROOM_KEY"muc-lock-new-room"public static final StringMUC_MULTI_ITEM_ALLOWED_KEY"muc-multi-item-allowed"protected static final StringMUC_REPO_CLASS_PROP_KEY"muc-repo-class"protected static final StringMUC_REPO_URL_PROP_KEY"muc-repo-url"public static final StringPING_EVERY_MINUTE_KEY"ping-every-minute"public static final StringPRESENCE_FILTER_ENABLED_KEY"presence-filter-enabled"public static final StringSEARCH_GHOSTS_EVERY_MINUTE_KEY"search-ghosts-every-minute" -
tigase.muc.Room Modifier and Type Constant Field Value public static final StringFILTERED_OCCUPANTS_COLLECTION"filtered_occupants_collection" -
tigase.muc.RoomConfig Modifier and Type Constant Field Value public static final StringMUC_ROOMCONFIG_ALLOWINVITES_KEY"muc#roomconfig_allowinvites"public static final StringMUC_ROOMCONFIG_ANONYMITY_KEY"muc#roomconfig_anonymity"public static final StringMUC_ROOMCONFIG_CHANGESUBJECT_KEY"muc#roomconfig_changesubject"public static final StringMUC_ROOMCONFIG_ENABLELOGGING_KEY"muc#roomconfig_enablelogging"public static final StringMUC_ROOMCONFIG_MAXHISTORY_KEY"muc#maxhistoryfetch"public static final StringMUC_ROOMCONFIG_MAXUSERS_KEY"muc#roomconfig_maxusers"public static final StringMUC_ROOMCONFIG_MEMBERSONLY_KEY"muc#roomconfig_membersonly"public static final StringMUC_ROOMCONFIG_MODERATEDROOM_KEY"muc#roomconfig_moderatedroom"public static final StringMUC_ROOMCONFIG_PASSWORDPROTECTEDROOM_KEY"muc#roomconfig_passwordprotectedroom"public static final StringMUC_ROOMCONFIG_PERSISTENTROOM_KEY"muc#roomconfig_persistentroom"public static final StringMUC_ROOMCONFIG_PUBLICROOM_KEY"muc#roomconfig_publicroom"public static final StringMUC_ROOMCONFIG_ROOMDESC_KEY"muc#roomconfig_roomdesc"public static final StringMUC_ROOMCONFIG_ROOMNAME_KEY"muc#roomconfig_roomname"public static final StringMUC_ROOMCONFIG_ROOMSECRET_KEY"muc#roomconfig_roomsecret"public static final StringTIGASE_ROOMCONFIG_PRESENCE_DELIVERY_LOGIC"tigase#presence_delivery_logic"public static final StringTIGASE_ROOMCONFIG_PRESENCE_FILTERED_AFFILIATIONS"tigase#presence_filtered_affiliations"public static final StringTIGASE_ROOMCONFIG_PRESENCE_FILTERING"tigase#presence_filtering"public static final StringTIGASE_ROOMCONFIG_WELCOME_MESSAGES"tigase#welcome_messages"
-
tigase.muc.history.AbstractJDBCHistoryProvider Modifier and Type Constant Field Value public static final StringADD_MESSAGE_QUERY_KEY"ADD_MESSAGE_QUERY_KEY"public static final StringDELETE_MESSAGES_QUERY_KEY"DELETE_MESSAGES_QUERY_KEY"public static final StringGET_MESSAGES_MAXSTANZAS_QUERY_KEY"GET_MESSAGES_MAXSTANZAS_QUERY_KEY"public static final StringGET_MESSAGES_SINCE_QUERY_KEY"GET_MESSAGES_SINCE_QUERY_KEY" -
tigase.muc.history.DerbySqlHistoryProvider Modifier and Type Constant Field Value public static final StringADD_MESSAGE_QUERY_VAL"insert into muc_history (room_name, event_type, timestamp, sender_jid, sender_nickname, body, public_event, msg) values (?, 1, ?, ?, ?, ?, ?, ?)"public static final StringDELETE_MESSAGES_QUERY_VAL"delete from muc_history where room_name=?"public static final StringGET_MESSAGES_MAXSTANZAS_QUERY_VAL"select room_name, event_type, timestamp, sender_jid, sender_nickname, body, msg from muc_history where room_name=? order by timestamp desc"public static final StringGET_MESSAGES_SINCE_QUERY_VAL"select room_name, event_type, timestamp, sender_jid, sender_nickname, body, msg from muc_history where room_name=? and timestamp >= ? order by timestamp desc" -
tigase.muc.history.HistoryManagerFactory Modifier and Type Constant Field Value public static final StringDB_CLASS_KEY"history-db"public static final StringDB_URI_KEY"history-db-uri" -
tigase.muc.history.MySqlHistoryProvider Modifier and Type Constant Field Value public static final StringADD_MESSAGE_QUERY_VAL"insert into muc_history (room_name, event_type, timestamp, sender_jid, sender_nickname, body, public_event, msg) values (?, 1, ?, ?, ?, ?, ?, ?)"public static final StringDELETE_MESSAGES_QUERY_VAL"delete from muc_history where room_name=?"public static final StringGET_MESSAGES_MAXSTANZAS_QUERY_VAL"select room_name, event_type, timestamp, sender_jid, sender_nickname, body, msg from (select * from muc_history where room_name=? order by timestamp desc limit ? ) AS t order by t.timestamp"public static final StringGET_MESSAGES_SINCE_QUERY_VAL"select room_name, event_type, timestamp, sender_jid, sender_nickname, body, msg from (select * from muc_history where room_name=? and timestamp >= ? order by timestamp desc limit ? ) AS t order by t.timestamp" -
tigase.muc.history.PostgreSqlHistoryProvider Modifier and Type Constant Field Value public static final StringADD_MESSAGE_QUERY_VAL"insert into muc_history (room_name, event_type, timestamp, sender_jid, sender_nickname, body, public_event, msg) values (?, 1, ?, ?, ?, ?, ?, ?)"public static final StringDELETE_MESSAGES_QUERY_VAL"delete from muc_history where room_name=?"public static final StringGET_MESSAGES_MAXSTANZAS_QUERY_VAL"select room_name, event_type, timestamp, sender_jid, sender_nickname, body, msg from (select * from muc_history where room_name=? order by timestamp desc limit ? ) AS t order by t.timestamp"public static final StringGET_MESSAGES_SINCE_QUERY_VAL"select room_name, event_type, timestamp, sender_jid, sender_nickname, body, msg from (select * from muc_history where room_name=? and timestamp >= ? order by timestamp desc limit ? ) AS t order by t.timestamp" -
tigase.muc.history.SqlserverSqlHistoryProvider Modifier and Type Constant Field Value public static final StringADD_MESSAGE_QUERY_VAL"insert into muc_history (room_name, event_type, timestamp, sender_jid, sender_nickname, body, public_event, msg) values (?, 1, ?, ?, ?, ?, ?, ?)"public static final StringCHECK_TEXT_FIELD_INVALID_TYPES"select 1 from [INFORMATION_SCHEMA].[COLUMNS] where [TABLE_NAME] = \'muc_history\' and ([COLUMN_NAME] = \'body\' or [COLUMN_NAME] = \'msg\') and [DATA_TYPE] = \'TEXT\' and [TABLE_CATALOG] = DB_NAME()"public static final StringDELETE_MESSAGES_QUERY_VAL"delete from muc_history where room_name=?"public static final StringGET_MESSAGES_MAXSTANZAS_QUERY_VAL"select room_name, event_type, timestamp, sender_jid, sender_nickname, body, msg from (select top (?) * from muc_history where room_name=? order by timestamp desc ) AS t order by t.timestamp"public static final StringGET_MESSAGES_SINCE_QUERY_VAL"select room_name, event_type, timestamp, sender_jid, sender_nickname, body, msg from (select top (?) * from muc_history where room_name= ? and timestamp >= ? order by timestamp desc ) AS t order by t.timestamp"
-
tigase.muc.logger.MucLogger Modifier and Type Constant Field Value public static final StringMUC_LOGGER_CLASS_KEY"muc-logger-class"
-
tigase.muc.modules.GroupchatMessageModule Modifier and Type Constant Field Value public static final StringID"groupchat" -
tigase.muc.modules.IqStanzaForwarderModule Modifier and Type Constant Field Value public static final StringID"iqforwarder" -
tigase.muc.modules.MediatedInvitationModule Modifier and Type Constant Field Value public static final StringID"invitations" -
tigase.muc.modules.ModeratorModule Modifier and Type Constant Field Value public static final StringID"admin" -
tigase.muc.modules.PresenceModule Modifier and Type Constant Field Value public static final StringID"presences" -
tigase.muc.modules.PrivateMessageModule Modifier and Type Constant Field Value public static final StringID"privatemessages" -
tigase.muc.modules.RoomConfigurationModule Modifier and Type Constant Field Value public static final StringID"owner" -
tigase.muc.modules.UniqueRoomNameModule Modifier and Type Constant Field Value public static final StringID"unique"