1 package org.jumpmind.symmetric.ext;
2
3 public interface IExtensionPoint {
4
5 /***
6 * Allow the plug-in implementation to specific whether the SymmetricDS
7 * runtime should auto register it or if it will register itself.
8 */
9 public boolean isAutoRegister();
10
11 }