⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checkpointmbean.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/** * */package org.xmlBlaster.util.checkpoint;import org.xmlBlaster.util.admin.I_AdminService;/*** @author <a href="mailto:xmlBlaster@marcelruff.info">Marcel Ruff</a>*/public interface CheckpointMBean extends I_AdminService {   /**    * A comma separated list of checkpoints used    * @return "publish.ack,update.ack,update.queue.add"    */   String getCheckpointList();   /**    * @return The plugin specific filter string    */   String getFilter();   /**    * The filter is used by the plugin to determine which message shall be logged    * @param Set a filter string, the meaning is specific to the plugin used    */   void setFilter(String filter);   /**    * @return If set to true the getFilter() is ignored    */   boolean isShowAllMessages();   /**    * @param showAllMessages If set to true the getFilter() is ignored    */   void setShowAllMessages(boolean showAllMessages);   boolean isShowAllClientProperties();   /**    * @param showAllClientProperties    *           the showAllClientProperties to set    */   void setShowAllClientProperties(boolean showAllClientProperties);   /**    * @return if true: <wfguid>4e5082125</wfguid>    * if false: [wfguid=4e5082125]    */   boolean isXmlStyle();   /**    * @param xmlStyle the xmlStyle to set    */   void setXmlStyle(boolean xmlStyle);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -