Config no longer implements Identifiable because this was in violation of the contrac...
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / ExtendedConfig.java
index 070a52a9dd201f2022982b9b128aa9ae0421bb48..5fa8f03dffdad4261d13baf6e6f5005e802c9fba 100644 (file)
  */
 package org.wamblee.xmlrouter.impl;
 
-import org.wamblee.xmlrouter.config.Config;
+import org.wamblee.xmlrouter.config.Identifiable;
 
-public interface ExtendedConfig<T> extends Config<T> {
+public interface ExtendedConfig<T extends Identifiable<T>> extends Config<T> {
 
-    boolean isDirty();
-
-    void resetDirty();
 }