| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
DEFAULT_ROOM_CONFIG_KEY |
"default_room_config" |
public static final String |
DEFAULT_ROOM_CONFIG_PREFIX_KEY |
"default_room_config/" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
LOG_DIR_KEY |
"room-log-directory" |
public static final String |
MESSAGE_FILTER_ENABLED_KEY |
"message-filter-enabled" |
public static final String |
MUC_ADD_ID_TO_MESSAGE_IF_MISSING_KEY |
"muc-add-id-to-message-if-missing" |
public static final String |
MUC_ALLOW_CHAT_STATES_KEY |
"muc-allow-chat-states" |
public static final String |
MUC_LOCK_NEW_ROOM_KEY |
"muc-lock-new-room" |
public static final String |
MUC_MULTI_ITEM_ALLOWED_KEY |
"muc-multi-item-allowed" |
protected static final String |
MUC_REPO_CLASS_PROP_KEY |
"muc-repo-class" |
protected static final String |
MUC_REPO_URL_PROP_KEY |
"muc-repo-url" |
public static final String |
PRESENCE_FILTER_ENABLED_KEY |
"presence-filter-enabled" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
FILTERED_OCCUPANTS_COLLECTION |
"filtered_occupants_collection" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
MUC_ROOMCONFIG_ALLOWINVITES_KEY |
"muc#roomconfig_allowinvites" |
public static final String |
MUC_ROOMCONFIG_ANONYMITY_KEY |
"muc#roomconfig_anonymity" |
public static final String |
MUC_ROOMCONFIG_CHANGESUBJECT_KEY |
"muc#roomconfig_changesubject" |
public static final String |
MUC_ROOMCONFIG_ENABLELOGGING_KEY |
"muc#roomconfig_enablelogging" |
public static final String |
MUC_ROOMCONFIG_MAX_USER_RESOURCES_KEY |
"muc#roomconfig_maxresources" |
public static final String |
MUC_ROOMCONFIG_MAXHISTORY_KEY |
"muc#maxhistoryfetch" |
public static final String |
MUC_ROOMCONFIG_MAXUSERS_KEY |
"muc#roomconfig_maxusers" |
public static final String |
MUC_ROOMCONFIG_MEMBERSONLY_KEY |
"muc#roomconfig_membersonly" |
public static final String |
MUC_ROOMCONFIG_MODERATEDROOM_KEY |
"muc#roomconfig_moderatedroom" |
public static final String |
MUC_ROOMCONFIG_PASSWORDPROTECTEDROOM_KEY |
"muc#roomconfig_passwordprotectedroom" |
public static final String |
MUC_ROOMCONFIG_PERSISTENTROOM_KEY |
"muc#roomconfig_persistentroom" |
public static final String |
MUC_ROOMCONFIG_PUBLICROOM_KEY |
"muc#roomconfig_publicroom" |
public static final String |
MUC_ROOMCONFIG_ROOMDESC_KEY |
"muc#roomconfig_roomdesc" |
public static final String |
MUC_ROOMCONFIG_ROOMNAME_KEY |
"muc#roomconfig_roomname" |
public static final String |
MUC_ROOMCONFIG_ROOMSECRET_KEY |
"muc#roomconfig_roomsecret" |
public static final String |
TIGASE_ROOMCONFIG_PRESENCE_DELIVERY_LOGIC |
"tigase#presence_delivery_logic" |
public static final String |
TIGASE_ROOMCONFIG_PRESENCE_FILTERED_AFFILIATIONS |
"tigase#presence_filtered_affiliations" |
public static final String |
TIGASE_ROOMCONFIG_PRESENCE_FILTERING |
"tigase#presence_filtering" |
public static final String |
TIGASE_ROOMCONFIG_WELCOME_MESSAGES |
"tigase#welcome_messages" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ADD_MESSAGE_QUERY_KEY |
"ADD_MESSAGE_QUERY_KEY" |
public static final String |
DELETE_MESSAGES_QUERY_KEY |
"DELETE_MESSAGES_QUERY_KEY" |
public static final String |
GET_MESSAGES_MAXSTANZAS_QUERY_KEY |
"GET_MESSAGES_MAXSTANZAS_QUERY_KEY" |
public static final String |
GET_MESSAGES_SINCE_QUERY_KEY |
"GET_MESSAGES_SINCE_QUERY_KEY" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ADD_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 String |
DELETE_MESSAGES_QUERY_VAL |
"delete from muc_history where room_name=?" |
public static final String |
GET_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 String |
GET_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" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ADD_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 String |
DELETE_MESSAGES_QUERY_VAL |
"delete from muc_history where room_name=?" |
public static final String |
GET_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 String |
GET_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" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ADD_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 String |
DELETE_MESSAGES_QUERY_VAL |
"delete from muc_history where room_name=?" |
public static final String |
GET_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 String |
GET_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" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ADD_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 String |
CHECK_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 String |
DELETE_MESSAGES_QUERY_VAL |
"delete from muc_history where room_name=?" |
public static final String |
GET_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 String |
GET_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" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"muc-logger" |
public static final String |
MUC_LOGGER_CLASS_KEY |
"muc-logger-class" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"groupchat" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"iqforwarder" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"invitations" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"admin" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"presences" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"privatemessages" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"ownerModule" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"unique" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"vcard" |
public static final String |
NAME |
"vCard" |
public static final String |
XMLNS |
"vcard-temp" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ID |
"mucRepository" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
ROOMS_KEY |
"rooms/" |
| Modifier and Type | Constant Field | Value |
|---|---|---|
public static final String |
MUC_SCHEMA_ID |
"muc" |
public static final String |
MUC_SCHEMA_NAME |
"Tigase MUC Component" |
Copyright © 2007–2021 "Tigase, Inc.". All rights reserved.