Constant Field Values


Contents
tigase.muc.*

tigase.muc.MUCComponent
public static final String ADMINS_KEY "admins"
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_ALLOW_CHAT_STATES_KEY "muc-allow-chat-states"
public static final String MUC_LOCK_NEW_ROOM_KEY "muc-lock-new-room"
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 PING_EVERY_MINUTE_KEY "ping-every-minute"
public static final String PRESENCE_FILTER_ENABLED_KEY "presence-filter-enabled"

tigase.muc.RoomConfig
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_MAXHISTORY_KEY "muc#maxhistoryfetch"
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"

tigase.muc.history.DerbySqlHistoryProvider
public static final String ADD_MESSAGE_QUERY "insert into muc_history (room_name, event_type, timestamp, sender_jid, sender_nickname, body) values (?, 1, ?, ?, ?, ?)"
public static final String DELETE_MESSAGES_QUERY "delete from muc_history where room_name=?"
public static final String GET_MESSAGES_MAXSTANZAS_QUERY "select room_name, event_type, timestamp, sender_jid, sender_nickname, body from muc_history where room_name=? order by timestamp desc"
public static final String GET_MESSAGES_SINCE_QUERY "select room_name, event_type, timestamp, sender_jid, sender_nickname, body from muc_history where room_name=? and timestamp >= ? order by timestamp desc"

tigase.muc.history.HistoryManagerFactory
public static final String DB_CLASS_KEY "history-db"
public static final String DB_URI_KEY "history-db-uri"

tigase.muc.history.MySqlHistoryProvider
public static final String ADD_MESSAGE_QUERY "insert into muc_history (room_name, event_type, timestamp, sender_jid, sender_nickname, body, public_event) values (?, 1, ?, ?, ?, ?, ?)"
public static final String DELETE_MESSAGES_QUERY "delete from muc_history where room_name=?"
public static final String GET_MESSAGES_MAXSTANZAS_QUERY "select room_name, event_type, timestamp, sender_jid, sender_nickname, body 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 "select room_name, event_type, timestamp, sender_jid, sender_nickname, body 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
public static final String ADD_MESSAGE_QUERY "insert into muc_history (room_name, event_type, timestamp, sender_jid, sender_nickname, body, public_event) values (?, 1, ?, ?, ?, ?, ?)"
public static final String DELETE_MESSAGES_QUERY "delete from muc_history where room_name=?"
public static final String GET_MESSAGES_MAXSTANZAS_QUERY "select room_name, event_type, timestamp, sender_jid, sender_nickname, body 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 "select room_name, event_type, timestamp, sender_jid, sender_nickname, body from (select * from muc_history where room_name=? and timestamp >= ? order by timestamp desc limit ? ) AS t order by t.timestamp"

tigase.muc.logger.MucLogger
public static final String MUC_LOGGER_CLASS_KEY "muc-logger-class"



Copyright © 2007-2012 Tigase. All Rights Reserved.