📄 timestampchangedetectormbean.java
字号:
/*------------------------------------------------------------------------------Name: TimestampChangeDetectorMBean.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.contrib.dbwatcher.detector;/** * TimestampChangeDetectorMBean * @author <a href="mailto:michele@laghi.eu">Michele Laghi</a> */public interface TimestampChangeDetectorMBean { String getChangeCommand(); void setChangeCommand(String changeCommand); String getChangeDetectStatement(); void setChangeDetectStatement(String changeDetectStatement); String getGroupColName(); void setGroupColName(String groupColName); boolean isIgnoreExistingDataOnStartup(); String getNewTimestamp(); String getOldTimestamp(); void setOldTimestamp(String oldTimestamp); boolean isPoolOwner(); void setPoolOwner(boolean poolOwner); String getQueryMeatStatement(); void setQueryMeatStatement(String queryMeatStatement); boolean isTableExists(); int getTimestampColNum(); void setTimestampColNum(int timestampColNum); boolean isUseGroupCol(); void setUseGroupCol(boolean useGroupCol); void stopDetection(); void activateDetection(); boolean isIgnoreDetection(); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -