checkpointmbean.java
来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 59 行
JAVA
59 行
/** * */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 + =
减小字号Ctrl + -
显示快捷键?