You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2018/11/01 20:56:48 UTC

[geode] 01/01: GEODE-5966: mark PooledDataSourceFactory experimental

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

dschneider pushed a commit to branch feature/GEODE-5966
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 431ac1059a08972b03d525dc2bc6fbf7e5096d7a
Author: Darrel Schneider <ds...@pivotal.io>
AuthorDate: Thu Nov 1 13:55:44 2018 -0700

    GEODE-5966: mark PooledDataSourceFactory experimental
---
 .../main/java/org/apache/geode/datasource/PooledDataSourceFactory.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/geode-core/src/main/java/org/apache/geode/datasource/PooledDataSourceFactory.java b/geode-core/src/main/java/org/apache/geode/datasource/PooledDataSourceFactory.java
index 40f27f9..0f8a2dd 100644
--- a/geode-core/src/main/java/org/apache/geode/datasource/PooledDataSourceFactory.java
+++ b/geode-core/src/main/java/org/apache/geode/datasource/PooledDataSourceFactory.java
@@ -20,6 +20,8 @@ import java.util.Properties;
 
 import javax.sql.DataSource;
 
+import org.apache.geode.annotations.Experimental;
+
 /**
  * Classes that implement this interface can be used as the class name
  * specified in the jndi-binding "conn-pooled-datasource-class" when the
@@ -27,6 +29,7 @@ import javax.sql.DataSource;
  * <p>
  * Note: implementors of this interface must also implement a zero-arg constructor.
  */
+@Experimental
 public interface PooledDataSourceFactory {
   /**
    * Create and return a data source configured with the given properties.