dbwatcherconstants.java

来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 42 行

JAVA
42
字号
/*------------------------------------------------------------------------------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 + =
减小字号Ctrl + -
显示快捷键?