Now using RouterConfig internally inside the XML Router.
[xmlrouter] / config / src / main / java / org / wamblee / xmlrouter / config / RouterConfig.java
index 9e53f4995929d585f42889929902e32407fdea72..57ddae740cc78a438190733c9242ca550b9f27ed 100644 (file)
@@ -15,7 +15,6 @@
  */
 package org.wamblee.xmlrouter.config;
 
-
 /**
  * Configuration API for the XML router.
  * 
@@ -23,15 +22,18 @@ package org.wamblee.xmlrouter.config;
  */
 public interface RouterConfig {
 
-    // Documents
-
-    Config<DocumentType> getDocumentTypeConfig();
-
-    // Transformations
-
-    Config<Transformation> getTransformationConfig();
+    /**
+     * @return Document types.
+     */
+    Config<DocumentType> documentTypeConfig();
 
-    // Filters
+    /**
+     * @return Transformations.
+     */
+    Config<Transformation> transformationConfig();
 
-    Config<Filter> getFilterConfig();
+    /**
+     * @return Filters.
+     */
+    Config<Filter> filterConfig();
 }