Renames pz2utils4jsf package to mkjsf
[mkjsf-moved-to-github.git] / src / main / java / com / indexdata / pz2utils4jsf / config / ConfigurationReader.java
diff --git a/src/main/java/com/indexdata/pz2utils4jsf/config/ConfigurationReader.java b/src/main/java/com/indexdata/pz2utils4jsf/config/ConfigurationReader.java
deleted file mode 100644 (file)
index ea94af5..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-package com.indexdata.pz2utils4jsf.config;\r
-\r
-import java.io.Serializable;\r
-import java.util.List;\r
-\r
-import com.indexdata.pz2utils4jsf.errors.ConfigurationException;\r
-\r
-/**\r
- * Interface to be implemented by classes that read configurations from a source -\r
- * i.e. from web.xml, the file system, a database or hard-coded. \r
- * \r
- * @author Niels Erik\r
- *\r
- */\r
-public interface ConfigurationReader extends Serializable {\r
-    \r
-  /**\r
-   * Returns a Configuration to be used by the given Configurable\r
-   * \r
-   * @param configurable the configurable to be configured by a configuration obtained by this reader\r
-   * @return a Configuration, basically a set of key-value pairs\r
-   * @throws ConfigurationException\r
-   */\r
-  public Configuration getConfiguration(Configurable configurable) throws ConfigurationException;\r
-  \r
-  /**\r
-   * Returns documentation for the key-value pairs obtained by this reader\r
-   * @return\r
-   */\r
-  public List<String> document();\r
-}\r