summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IExtendedConfiguration.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2019-05-24 08:20:01 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2019-05-24 08:20:01 +0200
commitf4bcfe76944585321bd239b48d6df25abe337cbb (patch)
tree3c7e5a8e9f56a59b1ab20ff1f651382dc3a38c50 /eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IExtendedConfiguration.java
parent6bd515d02b5d2c8bb81cf59a61962c6a8fbb84ef (diff)
downloadEAAF-Components-f4bcfe76944585321bd239b48d6df25abe337cbb.tar.gz
EAAF-Components-f4bcfe76944585321bd239b48d6df25abe337cbb.tar.bz2
EAAF-Components-f4bcfe76944585321bd239b48d6df25abe337cbb.zip
update IConfiguration interfaces to support SpringBoot resources as configuration source
Diffstat (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IExtendedConfiguration.java')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IExtendedConfiguration.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IExtendedConfiguration.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IExtendedConfiguration.java
new file mode 100644
index 00000000..368155db
--- /dev/null
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IExtendedConfiguration.java
@@ -0,0 +1,24 @@
+package at.gv.egiz.eaaf.core.api.idp;
+
+import java.net.URI;
+import java.util.Properties;
+
+public interface IExtendedConfiguration extends IConfiguration {
+
+ /**
+ * Get the full configuration properties object
+ *
+ * @return
+ */
+ @Deprecated
+ public Properties getFullConfigurationProperties();
+
+ /**
+ * Get the path to EAAFCore configuration that is internally used
+ *
+ * @return
+ */
+ @Deprecated
+ public URI getConfigurationFilePath();
+
+}