You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2016/01/27 18:15:29 UTC

svn commit: r1727131 - /manifoldcf/branches/CONNECTORS-1270/framework/core/src/main/java/org/apache/manifoldcf/core/system/ManifoldCF.java

Author: kwright
Date: Wed Jan 27 17:15:29 2016
New Revision: 1727131

URL: http://svn.apache.org/viewvc?rev=1727131&view=rev
Log:
Add file-resources property, and do some minor removal of unused member variables.

Modified:
    manifoldcf/branches/CONNECTORS-1270/framework/core/src/main/java/org/apache/manifoldcf/core/system/ManifoldCF.java

Modified: manifoldcf/branches/CONNECTORS-1270/framework/core/src/main/java/org/apache/manifoldcf/core/system/ManifoldCF.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1270/framework/core/src/main/java/org/apache/manifoldcf/core/system/ManifoldCF.java?rev=1727131&r1=1727130&r2=1727131&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1270/framework/core/src/main/java/org/apache/manifoldcf/core/system/ManifoldCF.java (original)
+++ manifoldcf/branches/CONNECTORS-1270/framework/core/src/main/java/org/apache/manifoldcf/core/system/ManifoldCF.java Wed Jan 27 17:15:29 2016
@@ -106,10 +106,6 @@ public class ManifoldCF
   protected static Integer initializeFlagLock = new Integer(0);
 
   // Local member variables
-  protected static String loginUserName = null;
-  protected static String loginPassword = null;
-  protected static String apiLoginUserName = null;
-  protected static String apiLoginPassword = null;
   protected static String masterDatabaseName = null;
   protected static String masterDatabaseUsername = null;
   protected static String masterDatabasePassword = null;
@@ -152,6 +148,10 @@ public class ManifoldCF
   /** Location of log configuration file */
   public static final String logConfigFileProperty = "org.apache.manifoldcf.logconfigfile";
   
+  // File resources property
+  /** Location of file resources */
+  public static final String fileResourcesProperty = "org.apache.manifoldcf.fileresources";
+  
   // Implementation class properties
   /** Lock manager implementation class */
   public static final String lockManagerImplementation = "org.apache.manifoldcf.lockmanagerclass";