📄 dbwatcherconstants.java
字号:
/*------------------------------------------------------------------------------Name: DbWatcherConstants.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.contrib.dbwatcher;/** * DbWatcherConstants * @author <a href="mailto:michele@laghi.eu">Michele Laghi</a> */public interface DbWatcherConstants { // these are used in the XmlBlasterPublisher public final static String MOM_CONNECT_QOS = "mom.connectQos"; public final static String MOM_PROPS_TO_ADD_TO_CONNECT = "mom.propsToAddToConnect"; public final static String MOM_TOPIC_NAME = "mom.topicName"; public final static String MOM_STATUS_TOPIC_NAME = "mom.statusTopicName"; public final static String MOM_LOGIN_NAME = "mom.loginName"; public final static String MOM_PASSWORD = "mom.password"; public final static String MOM_ERASE_ON_DROP = "mom.eraseOnDrop"; public final static String MOM_ERASE_ON_DELETE = "mom.eraseOnDelete"; public final static String MOM_PUBLISH_KEY = "mom.publishKey"; public final static String MOM_PUBLISH_QOS = "mom.publishQos"; public final static String MOM_ALERT_SUBSCRIBE_KEY = "mom.alertSubscribeKey"; public final static String MOM_ALERT_SUBSCRIBE_QOS = "mom.alertSubscribeQos"; public final static String MOM_MAX_SESSIONS = "mom.maxSessions"; public final static String MOM_COMPRESS_SIZE = "mom.compressSize"; // these are used and passed in the client properties /** a long telling the uncompressed size. */ public final static String _UNCOMPRESSED_SIZE = "_uncompressedSize"; /** either 'ZIP' or 'GZIP'. If not set, the content is not compressed */ public final static String _COMPRESSION_TYPE = "_compressionType"; // these are specific values for the property keys defined above. public final static String COMPRESSION_TYPE_ZIP = "ZIP"; public final static String COMPRESSION_TYPE_GZIP = "GZIP"; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -