From eaaab74a7a4a44f8d5a64324abf5bccb72339d98 Mon Sep 17 00:00:00 2001
From: felmer <felmer>
Date: Tue, 25 Oct 2011 12:00:03 +0000
Subject: [PATCH] LMS-2587 increase minor version to 2.

SVN: 23421
---
 .../openbis/plugin/query/server/api/v1/QueryApiServer.java   | 2 +-
 .../openbis/plugin/query/shared/api/v1/IQueryApiServer.java  | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/plugin/query/server/api/v1/QueryApiServer.java b/openbis/source/java/ch/systemsx/cisd/openbis/plugin/query/server/api/v1/QueryApiServer.java
index 8ab078468ac..6389a8f93d0 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/plugin/query/server/api/v1/QueryApiServer.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/plugin/query/server/api/v1/QueryApiServer.java
@@ -167,7 +167,7 @@ public class QueryApiServer extends AbstractServer<IQueryApiServer> implements I
 
     public int getMinorVersion()
     {
-        return 1;
+        return 2;
     }
 
     private QueryTableModel translate(TableModel result)
diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/plugin/query/shared/api/v1/IQueryApiServer.java b/openbis/source/java/ch/systemsx/cisd/openbis/plugin/query/shared/api/v1/IQueryApiServer.java
index cd609b74a3d..8a1a7dfbf32 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/plugin/query/shared/api/v1/IQueryApiServer.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/plugin/query/shared/api/v1/IQueryApiServer.java
@@ -27,7 +27,7 @@ import ch.systemsx.cisd.openbis.plugin.query.shared.api.v1.dto.QueryTableModel;
 import ch.systemsx.cisd.openbis.plugin.query.shared.api.v1.dto.ReportDescription;
 
 /**
- * Public API interface to query server (version 1).
+ * Public API interface to query server (version 1.2).
  * 
  * @author Franz-Josef Elmer
  */
@@ -75,6 +75,8 @@ public interface IQueryApiServer extends IRpcService
 
     /**
      * Returns meta data for all reporting plugins which deliver a table.
+     * 
+     * @since 1.2
      */
     @Transactional(readOnly = true)
     public List<ReportDescription> listTableReportDescriptions(String sessionToken);
@@ -85,6 +87,7 @@ public interface IQueryApiServer extends IRpcService
      * 
      * @param dataStoreCode Code of the data store.
      * @param serviceKey Key of the data store service.
+     * @since 1.2
      */
     @Transactional(readOnly = true)
     public QueryTableModel createReportFromDataSets(String sessionToken, String dataStoreCode,
-- 
GitLab