equality based on the ids of the contents of SingleRouterConfig.
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / ExtendedConfig.java
index 070a52a9dd201f2022982b9b128aa9ae0421bb48..2c1b781f6381fddf3781bac348ab671ad6113a5f 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();
 }