You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/01/25 15:09:03 UTC

ignite git commit: IGNITE-1786: Reverted Visor configuration changes (they do not relate to ODBC anyhow).

Repository: ignite
Updated Branches:
  refs/heads/ignite-1786 2116f631d -> a6225614e


IGNITE-1786: Reverted Visor configuration changes (they do not relate to ODBC anyhow).


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/a6225614
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/a6225614
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/a6225614

Branch: refs/heads/ignite-1786
Commit: a6225614ee1eb7e259d08781dda33556d0c4bb82
Parents: 2116f63
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Mon Jan 25 17:08:48 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Mon Jan 25 17:08:48 2016 +0300

----------------------------------------------------------------------
 .../visor/node/VisorIgfsConfiguration.java      | 30 ++++++++++++++++++++
 1 file changed, 30 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/a6225614/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorIgfsConfiguration.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorIgfsConfiguration.java b/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorIgfsConfiguration.java
index 494d6ff..50917eb 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorIgfsConfiguration.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/visor/node/VisorIgfsConfiguration.java
@@ -62,6 +62,15 @@ public class VisorIgfsConfiguration implements Serializable {
     /** Number of batches that can be concurrently sent to remote node. */
     private int perNodeParallelBatchCnt;
 
+    /** @deprecated Needed only for backward compatibility. */
+    private String secondaryHadoopFileSysUri;
+
+    /** @deprecated Needed only for backward compatibility. */
+    private String secondaryHadoopFileSysCfgPath;
+
+    /** @deprecated Needed only for backward compatibility. */
+    private String secondaryHadoopFileSysUserName;
+
     /** IGFS instance mode. */
     private IgfsMode dfltMode;
 
@@ -229,6 +238,27 @@ public class VisorIgfsConfiguration implements Serializable {
     }
 
     /**
+     * @deprecated Needed only for backward compatibility.
+     */
+    @Nullable public String secondaryHadoopFileSystemUri() {
+        return secondaryHadoopFileSysUri;
+    }
+
+    /**
+     * @deprecated Needed only for backward compatibility.
+     */
+    @Nullable public String secondaryHadoopFileSystemUserName() {
+        return secondaryHadoopFileSysUserName;
+    }
+
+    /**
+     * @deprecated Needed only for backward compatibility.
+     */
+    @Nullable public String secondaryHadoopFileSystemConfigPath() {
+        return secondaryHadoopFileSysCfgPath;
+    }
+
+    /**
      * @return IGFS instance mode.
      */
     public IgfsMode defaultMode() {