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 2018/11/09 10:49:25 UTC

[isis] branch v2 updated: ISIS-2020: add missing @Programmatic annotation

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

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


The following commit(s) were added to refs/heads/v2 by this push:
     new 6392d42  ISIS-2020: add missing @Programmatic annotation
6392d42 is described below

commit 6392d42607c1379dd675d89c08dbff8eafb9d6fe
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri Nov 9 11:49:20 2018 +0100

    ISIS-2020: add missing @Programmatic annotation
    
    Task-Url: https://issues.apache.org/jira/browse/ISIS-2020
---
 .../org/apache/isis/applib/services/jdosupport/IsisJdoSupport_v3_2.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/plugins/jdo-datanucleus-5/src/main/java/org/apache/isis/applib/services/jdosupport/IsisJdoSupport_v3_2.java b/core/plugins/jdo-datanucleus-5/src/main/java/org/apache/isis/applib/services/jdosupport/IsisJdoSupport_v3_2.java
index 9508b8e..0bcb2df 100644
--- a/core/plugins/jdo-datanucleus-5/src/main/java/org/apache/isis/applib/services/jdosupport/IsisJdoSupport_v3_2.java
+++ b/core/plugins/jdo-datanucleus-5/src/main/java/org/apache/isis/applib/services/jdosupport/IsisJdoSupport_v3_2.java
@@ -108,6 +108,7 @@ public interface IsisJdoSupport_v3_2 extends org.apache.isis.applib.services.jdo
      * not putting multi-valued fields in the FetchPlan, or by setting the query extension 
      * datanucleus.rdbms.query.multivaluedFetch to none (default is "exists" using the single SQL per field).
      */
+    @Programmatic
     default void disableMultivaluedFetch(JDOQLTypedQuery<?> query) {
         String key = RDBMSPropertyNames.PROPERTY_RDBMS_QUERY_MULTIVALUED_FETCH;
         query.extension(key, "none");