You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/02/04 06:35:44 UTC

[isis] 01/01: ISIS-2504: adds some java-doc

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch ISIS-2504
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 97f8b80c943c24c744d1d536b098a3a1ed5cfc82
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Feb 4 07:35:10 2021 +0100

    ISIS-2504: adds some java-doc
---
 .../core/config/datasources/DataSourceIntrospectionService.java     | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/core/config/src/main/java/org/apache/isis/core/config/datasources/DataSourceIntrospectionService.java b/core/config/src/main/java/org/apache/isis/core/config/datasources/DataSourceIntrospectionService.java
index 137e4e4..5a4e85f 100644
--- a/core/config/src/main/java/org/apache/isis/core/config/datasources/DataSourceIntrospectionService.java
+++ b/core/config/src/main/java/org/apache/isis/core/config/datasources/DataSourceIntrospectionService.java
@@ -40,10 +40,12 @@ import lombok.Value;
 import lombok.extern.log4j.Log4j2;
 
 /**
- * For a given <i>Spring</i> context, provides utilities to introspect the list of 
- * configured data-sources.
+ * For a given <i>Spring</i> context, makes information about configured data-sources available.
+ * 
+ * @apiNote The {@link DataSourceInfo} value type can be extended as needed.
  *  
  * @since 2.0 {@index}
+ * @see <a href="https://stackoverflow.com/questions/44446597/where-does-the-default-datasource-url-for-h2-come-from-on-spring-boot">stackoverflow.com</a>
  */
 @Service
 @Named("isis.config.DataSourceIntrospectionService")