You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by sc...@apache.org on 2019/08/15 16:29:59 UTC

svn commit: r1865236 [4/5] - in /manifoldcf/branches/CONNECTORS-1618: connectors/activedirectory/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/activedirectory/ connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/cr...

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/incrementalingest/IncrementalIngester.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/incrementalingest/IncrementalIngester.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/incrementalingest/IncrementalIngester.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/incrementalingest/IncrementalIngester.java Thu Aug 15 16:29:57 2019
@@ -36,7 +36,7 @@ import java.io.*;
 *
 * <br><br>
 * <b>ingeststatus</b>
-* <table border="1" cellpadding="3" cellspacing="0">
+* <table border="1" cellpadding="3" cellspacing="0" summary="">
 * <tr class="TableHeadingColor">
 * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
 * <tr><td>id</td><td>BIGINT</td><td>Primary Key</td></tr>
@@ -362,10 +362,7 @@ public class IncrementalIngester extends
   }
 
   /** Grab the entire pipeline.
-  *@param transformationConnections - the transformation connections, in order
-  *@param outputConnection - the output connection
-  *@param transformationDescriptionStrings - the array of description strings for transformations
-  *@param outputDescriptionString - the output description string
+  *@param pipelineConnections - the pipeline specification with version information
   *@return the pipeline description, or null if any part of the pipeline cannot be grabbed.
   */
   protected PipelineObjectWithVersions pipelineGrabWithVersions(IPipelineSpecificationWithVersions pipelineConnections)
@@ -412,10 +409,7 @@ public class IncrementalIngester extends
   }
 
   /** Grab the entire pipeline.
-  *@param transformationConnections - the transformation connections, in order
-  *@param outputConnection - the output connection
-  *@param transformationDescriptionStrings - the array of description strings for transformations
-  *@param outputDescriptionString - the output description string
+  *@param pipelineConnections - the pipeline specification
   *@return the pipeline description, or null if any part of the pipeline cannot be grabbed.
   */
   protected PipelineObject pipelineGrab(IPipelineSpecification pipelineConnections)
@@ -976,7 +970,7 @@ public class IncrementalIngester extends
   *@param pipelineConnections is the pipeline specification.
   *@param identifierClasses are the names of the spaces in which the identifier hashes should be interpreted.
   *@param identifierHashes is tha array of document identifier hashes if the documents.
-  *@param activities is the object to use to log the details of the ingestion attempt.  May be null.
+  *@param originalActivities is the object to use to log the details of the ingestion attempt.  May be null.
   */
   @Override
   public void documentDeleteMultiple(
@@ -1769,7 +1763,6 @@ public class IncrementalIngester extends
   /** Get a chunk of document ingest data records.
   *@param rval is the document ingest status array where the data should be put.
   *@param map is the map from id to index.
-  *@param clause is the in clause for the query.
   *@param list is the parameter list for the query.
   */
   protected void getPipelineDocumentIngestDataChunk(IngestStatuses rval, Map<String,Integer> map, String[] outputConnectionNames, List<String> list,
@@ -1925,7 +1918,6 @@ public class IncrementalIngester extends
   /** Query for and calculate the interval for a bunch of hashcodes.
   *@param rval is the array to stuff calculated return values into.
   *@param list is the list of parameters.
-  *@param queryPart is the part of the query pertaining to the list of hashcodes
   *@param returnMap is a mapping from document id to rval index.
   */
   protected void getIntervals(long[] rval, String[] outputConnectionNames, List<String> list, Map<String,Integer> returnMap)
@@ -2198,8 +2190,6 @@ public class IncrementalIngester extends
   
   /** Get a chunk of document uris.
   *@param rval is the string array where the uris should be put.
-  *@param map is the map from id to index.
-  *@param clause is the in clause for the query.
   *@param list are the doc keys for the query.
   */
   protected void getDocumentURIChunk(List<DeleteInfo> rval, String outputConnectionName,
@@ -2241,8 +2231,6 @@ public class IncrementalIngester extends
 
   /** Get a chunk of document uris.
   *@param rval is the string array where the uris should be put.
-  *@param map is the map from id to index.
-  *@param clause is the in clause for the query.
   *@param list are the doc keys for the query.
   *@param componentHash is the component hash, if any, for the query.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/AgentFactory.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/AgentFactory.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/AgentFactory.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/AgentFactory.java Thu Aug 15 16:29:57 2019
@@ -32,7 +32,6 @@ public class AgentFactory
   }
 
   /** Make an agent, given a class name.
-  *@param tc is the thread context.
   *@param className is the agent class name.
   *@return the agent.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/IAgent.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/IAgent.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/IAgent.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/IAgent.java Thu Aug 15 16:29:57 2019
@@ -70,7 +70,7 @@ public interface IAgent
   * Call this method to clean up dangling persistent state when a cluster is just starting
   * to come up.  This method CANNOT be called when there are any active agents
   * processes at all.
-  *@param processID is the current process ID.
+  *@param currentProcessID is the current process ID.
   */
   public void cleanUpAllAgentData(IThreadContext threadContext, String currentProcessID)
     throws ManifoldCFException;

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/IPipelineConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/IPipelineConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/IPipelineConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/interfaces/IPipelineConnector.java Thu Aug 15 16:29:57 2019
@@ -19,7 +19,6 @@
 package org.apache.manifoldcf.agents.interfaces;
 
 import org.apache.manifoldcf.core.interfaces.*;
-import org.apache.manifoldcf.agents.interfaces.*;
 
 import java.io.*;
 import java.util.*;
@@ -160,7 +159,7 @@ public interface IPipelineConnector exte
   
   /** Output the specification body section.
   * This method is called in the body section of a job page which has selected a pipeline connection of the current type.  Its purpose is to present the required form elements for editing.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html>, <body>, and <form> tags.  The name of the
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the
   * form is "editjob".
   *@param out is the output to which any HTML should be sent.
   *@param locale is the preferred local of the output.
@@ -189,7 +188,7 @@ public interface IPipelineConnector exte
   
   /** View specification.
   * This method is called in the body section of a job's view page.  Its purpose is to present the pipeline specification information to the user.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html> and <body> tags.
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt; and &lt;body&gt; tags.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the preferred local of the output.
   *@param connectionSequenceNumber is the unique number of this connection within the job.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/output/BaseOutputConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/output/BaseOutputConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/output/BaseOutputConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/output/BaseOutputConnector.java Thu Aug 15 16:29:57 2019
@@ -32,9 +32,10 @@ import java.util.*;
 * handle is used only if all the connection parameters for the handle match.
 *
 * Implementers of this interface should provide a default constructor which has this signature:
-*
+* <pre>
 * xxx();
-*
+* </pre>
+* 
 * Connectors are either configured or not.  If configured, they will persist in a pool, and be
 * reused multiple times.  Certain methods of a connector may be called before the connector is
 * configured.  This includes basically all methods that permit inspection of the connector's
@@ -261,7 +262,7 @@ public abstract class BaseOutputConnecto
 
   /** Output the specification body section.
   * This method is called in the body section of a job page which has selected an output connection of the current type.  Its purpose is to present the required form elements for editing.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html>, <body>, and <form> tags.  The name of the
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the
   * form is "editjob".
   *@param out is the output to which any HTML should be sent.
   *@param locale is the preferred local of the output.
@@ -297,7 +298,7 @@ public abstract class BaseOutputConnecto
 
   /** View specification.
   * This method is called in the body section of a job's view page.  Its purpose is to present the output specification information to the user.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html> and <body> tags.
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt; and &lt;body&gt; tags.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the preferred local of the output.
   *@param connectionSequenceNumber is the unique number of this connection within the job.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnection/OutputConnectionManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnection/OutputConnectionManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnection/OutputConnectionManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnection/OutputConnectionManager.java Thu Aug 15 16:29:57 2019
@@ -32,7 +32,7 @@ import org.apache.manifoldcf.agents.syst
 * 
 * <br><br>
 * <b>outputconnections</b>
-* <table border="1" cellpadding="3" cellspacing="0">
+* <table border="1" cellpadding="3" cellspacing="0" summary="">
 * <tr class="TableHeadingColor">
 * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
 * <tr><td>connectionname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnmgr/OutputConnectorManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnmgr/OutputConnectorManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnmgr/OutputConnectorManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnmgr/OutputConnectorManager.java Thu Aug 15 16:29:57 2019
@@ -27,7 +27,7 @@ import java.util.*;
  * 
  * <br><br>
  * <b>outputconnectors</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformation/BaseTransformationConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformation/BaseTransformationConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformation/BaseTransformationConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformation/BaseTransformationConnector.java Thu Aug 15 16:29:57 2019
@@ -33,9 +33,10 @@ import java.util.*;
 * handle is used only if all the connection parameters for the handle match.
 *
 * Implementers of this interface should provide a default constructor which has this signature:
-*
+* <pre>
 * xxx();
-*
+* </pre>
+* 
 * Connectors are either configured or not.  If configured, they will persist in a pool, and be
 * reused multiple times.  Certain methods of a connector may be called before the connector is
 * configured.  This includes basically all methods that permit inspection of the connector's
@@ -167,7 +168,7 @@ public abstract class BaseTransformation
   * an output description string in order to determine what should be done.
   *@param documentURI is the URI of the document.  The URI is presumed to be the unique identifier which the output data store will use to process
   * and serve the document.  This URI is constructed by the repository connector which fetches the document, and is thus universal across all output connectors.
-  *@param outputDescription is the description string that was constructed for this document by the getOutputDescription() method.
+  *@param pipelineDescription is the description string that was constructed for this document by the getOutputDescription() method.
   *@param document is the document data to be processed (handed to the output data store).
   *@param authorityNameString is the name of the authority responsible for authorizing any access tokens passed in with the repository document.  May be null.
   *@param activities is the handle to an object that the implementer of a pipeline connector may use to perform operations, such as logging processing activity,
@@ -228,7 +229,7 @@ public abstract class BaseTransformation
 
   /** Output the specification body section.
   * This method is called in the body section of a job page which has selected an output connection of the current type.  Its purpose is to present the required form elements for editing.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html>, <body>, and <form> tags.  The name of the
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the
   * form is "editjob".
   *@param out is the output to which any HTML should be sent.
   *@param locale is the preferred local of the output.
@@ -264,7 +265,7 @@ public abstract class BaseTransformation
 
   /** View specification.
   * This method is called in the body section of a job's view page.  Its purpose is to present the output specification information to the user.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html> and <body> tags.
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt; and &lt;body&gt; tags.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the preferred local of the output.
   *@param connectionSequenceNumber is the unique number of this connection within the job.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnection/TransformationConnectionManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnection/TransformationConnectionManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnection/TransformationConnectionManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnection/TransformationConnectionManager.java Thu Aug 15 16:29:57 2019
@@ -32,7 +32,7 @@ import org.apache.manifoldcf.agents.syst
 * 
 * <br><br>
 * <b>transformationconnections</b>
-* <table border="1" cellpadding="3" cellspacing="0">
+* <table border="1" cellpadding="3" cellspacing="0" summary="">
 * <tr class="TableHeadingColor">
 * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
 * <tr><td>connectionname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnmgr/TransformationConnectorManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnmgr/TransformationConnectorManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnmgr/TransformationConnectorManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnmgr/TransformationConnectorManager.java Thu Aug 15 16:29:57 2019
@@ -27,7 +27,7 @@ import java.util.*;
  * 
  * <br><br>
  * <b>transformationconnectors</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/authority-servlet/src/main/java/org/apache/manifoldcf/authorityservlet/UserACLServlet.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/authority-servlet/src/main/java/org/apache/manifoldcf/authorityservlet/UserACLServlet.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/authority-servlet/src/main/java/org/apache/manifoldcf/authorityservlet/UserACLServlet.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/authority-servlet/src/main/java/org/apache/manifoldcf/authorityservlet/UserACLServlet.java Thu Aug 15 16:29:57 2019
@@ -485,7 +485,7 @@ public class UserACLServlet extends Http
   * are met, and then when they are, firing off a MappingRequest.  One of these threads is spun up
   * for every IMappingConnection being handled.
   * NOTE WELL: The number of threads this might require is worrisome.  It is essentially
-  * <number_of_app_server_threads> * <number_of_mappers>.  I will try later to see if I can find
+  * {@literal<number_of_app_server_threads> * <number_of_mappers>}.  I will try later to see if I can find
   * a way of limiting this to sane numbers.
   */
   protected static class MappingOrderThread extends Thread
@@ -548,7 +548,7 @@ public class UserACLServlet extends Http
   * are met, and then when they are, firing off an AuthRequest.  One of these threads is spun up
   * for every IAuthorityConnection being handled.
   * NOTE WELL: The number of threads this might require is worrisome.  It is essentially
-  * <number_of_app_server_threads> * <number_of_authorities>.  I will try later to see if I can find
+  * {@literal<number_of_app_server_threads> * <number_of_authorities>}.  I will try later to see if I can find
   * a way of limiting this to sane numbers.
   */
   protected static class AuthOrderThread extends Thread

Modified: manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/HTMLParseState.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/HTMLParseState.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/HTMLParseState.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/HTMLParseState.java Thu Aug 15 16:29:57 2019
@@ -84,7 +84,7 @@ public class HTMLParseState extends TagP
     return false;
   }
   
-  /** This method is called for every <? ... ?> construct, or 'qtag'.
+  /** This method is called for every &lt;? ... ?&gt; construct, or 'qtag'.
   * This is not useful for HTML.
   *@return true to halt further processing.
   */
@@ -95,7 +95,7 @@ public class HTMLParseState extends TagP
     return super.noteQTag(tagName, attributes);
   }
 
-  /** This method is called for every <! <token> ... > construct, or 'btag'.
+  /** This method is called for every &lt;! &lt;token&gt; ... &gt; construct, or 'btag'.
   * Override it to intercept these.
   *@return true to halt further processing.
   */
@@ -107,7 +107,7 @@ public class HTMLParseState extends TagP
   }
 
   /** This method is called for the end of every btag, or any time
-  * there's a naked '>' in the document.  Override it if you want to intercept these.
+  * there's a naked '&gt;' in the document.  Override it if you want to intercept these.
   *@return true to halt further processing.
   */
   @Override
@@ -117,7 +117,7 @@ public class HTMLParseState extends TagP
     return super.noteEndBTag();
   }
 
-  /** Called for the start of every cdata-like tag, e.g. <![ <token> [ ... ]]>
+  /** Called for the start of every cdata-like tag, e.g. &lt;![ &lt;token&gt; [ ... ]]&gt;
   *@param token may be empty!!!
   *@return true to halt further processing.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/SingleCharacterReceiver.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/SingleCharacterReceiver.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/SingleCharacterReceiver.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/SingleCharacterReceiver.java Thu Aug 15 16:29:57 2019
@@ -67,7 +67,6 @@ public abstract class SingleCharacterRec
   *@param buffer is the buffer of characters that should come first.
   *@param offset is the offset within the buffer of the first character.
   *@param len is the number of characters in the buffer.
-  *@param inputStream is the stream that should come after the characters in the buffer.
   *@return true to abort, false if the end of the stream has been reached.
   */
   protected boolean dealWithRemainder(char[] buffer, int offset, int len, Reader reader)

Modified: manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/TagParseState.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/TagParseState.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/TagParseState.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/TagParseState.java Thu Aug 15 16:29:57 2019
@@ -25,18 +25,20 @@ import java.util.*;
 /** This class represents a basic xml/html tag parser.
 * It is capable of recognizing the following xml and html constructs:
 *
-* '<' <token> <attrs> '>' ... '</' <token> '>'
-* '<' <token> <attrs> '/>'
-* '<?' <token> <attrs>  '?>'
-* '<![' [<token>] '[' ... ']]>'
-* '<!' <token> ... '>'
-* '<!--' ... '-->'
-*
+* <pre>
+* '&lt;' &lt;token&gt; &lt;attrs&gt; '&gt;' ... '&lt;/' &lt;token&gt; '&gt;'
+* '&lt;' &lt;token&gt; &lt;attrs&gt; '/&gt;'
+* '&lt;?' &lt;token&gt; &lt;attrs&gt;  '?&gt;'
+* '&lt;![' [&lt;token&gt;] '[' ... ']]&gt;'
+* '&lt;!' &lt;token&gt; ... '&gt;'
+* '&lt;!--' ... '--&gt;'
+* </pre>
+* 
 * Each of these, save the comment, has supporting protected methods that will be
 * called by the parsing engine.  Overriding these methods will allow an extending
 * class to perform higher-level data extraction and parsing.
 *
-* Of these, the messiest is the <! ... > construct, since there can be multiple nested
+* Of these, the messiest is the &lt;! ... &gt; construct, since there can be multiple nested
 * btags, cdata-like escapes, and qtags inside.  Ideally the parser should produce a
 * sequence of preparsed tokens from these tags.  Since they can be nested, keeping
 * track of the depth is also essential, so we do that with a btag depth counter.
@@ -79,7 +81,7 @@ public class TagParseState extends Singl
   
   protected int currentState = TAGPARSESTATE_NORMAL;
 
-  /** The btag depth, which indicates btag behavior when > 0. */
+  /** The btag depth, which indicates btag behavior when &gt; 0. */
   protected int bTagDepth = 0;
   
   /** This is the only buffer we actually accumulate stuff in.
@@ -1006,7 +1008,7 @@ public class TagParseState extends Singl
     return false;
   }
 
-  /** This method is called for every <? ... ?> construct, or 'qtag'.
+  /** This method is called for every &lt;? ... ?&gt; construct, or 'qtag'.
   * Override it to intercept such constructs.
   *@return true to halt further processing.
   */
@@ -1018,7 +1020,7 @@ public class TagParseState extends Singl
     return false;
   }
   
-  /** This method is called for every <! <token> ... > construct, or 'btag'.
+  /** This method is called for every &lt;! &lt;token&gt; ... &gt; construct, or 'btag'.
   * Override it to intercept these.
   *@return true to halt further processing.
   */
@@ -1031,7 +1033,7 @@ public class TagParseState extends Singl
   }
   
   /** This method is called for the end of every btag, or any time
-  * there's a naked '>' in the document.  Override it if you want to intercept these.
+  * there's a naked '&gt;' in the document.  Override it if you want to intercept these.
   *@return true to halt further processing.
   */
   protected boolean noteEndBTag()
@@ -1041,7 +1043,7 @@ public class TagParseState extends Singl
     return false;
   }
   
-  /** Called for the start of every cdata-like tag, e.g. <![ <token> [ ... ]]>
+  /** Called for the start of every cdata-like tag, e.g. &lt;![ &lt;token&gt; [ ... ]]&gt;
   *@param token may be empty!!!
   *@return true to halt further processing.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLEncodingDetector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLEncodingDetector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLEncodingDetector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLEncodingDetector.java Thu Aug 15 16:29:57 2019
@@ -23,7 +23,7 @@ import java.util.*;
 import java.io.*;
 
 /** This is the XML encoding detector.
-* It is basically looking for the preamble's <?xml ... ?> tag, which it parses
+* It is basically looking for the preamble's &lt;?xml ... ?&gt; tag, which it parses
 * looking for the "encoding" attribute.  It stops either when it is beyond
 * any possibility of finding the preamble, or it finds the tag, whichever comes first.
 */
@@ -92,7 +92,7 @@ public class XMLEncodingDetector extends
     return true;
   }
 
-  /** This method is called for every <! <token> ... > construct, or 'btag'.
+  /** This method is called for every &lt;! &lt;token&gt; ... &gt; construct, or 'btag'.
   * Override it to intercept these.
   *@return true to halt further processing.
   */
@@ -104,7 +104,7 @@ public class XMLEncodingDetector extends
   }
 
   /** This method is called for the end of every btag, or any time
-  * there's a naked '>' in the document.  Override it if you want to intercept these.
+  * there's a naked '&gt;' in the document.  Override it if you want to intercept these.
   *@return true to halt further processing.
   */
   protected boolean noteEndBTag()
@@ -113,7 +113,7 @@ public class XMLEncodingDetector extends
     return true;
   }
   
-  /** Called for the start of every cdata-like tag, e.g. <![ <token> [ ... ]]>
+  /** Called for the start of every cdata-like tag, e.g. &lt;![ &lt;token&gt; [ ... ]]&gt;
   *@param token may be empty!!!
   *@return true to halt further processing.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLFuzzyParseState.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLFuzzyParseState.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLFuzzyParseState.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLFuzzyParseState.java Thu Aug 15 16:29:57 2019
@@ -141,7 +141,7 @@ public class XMLFuzzyParseState extends
     return false;
   }
   
-  /** This method is called for every <? ... ?> construct, or 'qtag'.
+  /** This method is called for every &lt;? ... ?&gt; construct, or 'qtag'.
   * This is not useful for HTML.
   *@return true to halt further processing.
   */
@@ -173,7 +173,7 @@ public class XMLFuzzyParseState extends
     return false;
   }
 
-  /** This method is called for every <! <token> ... > construct, or 'btag'.
+  /** This method is called for every &lt;! &lt;token&gt; ... &gt; construct, or 'btag'.
   * Override it to intercept these.
   *@return true to halt further processing.
   */
@@ -197,7 +197,7 @@ public class XMLFuzzyParseState extends
     return false;
   }
 
-  /** Called for the start of every cdata-like tag, e.g. <![ <token> [ ... ]]>
+  /** Called for the start of every cdata-like tag, e.g. &lt;![ &lt;token&gt; [ ... ]]&gt;
   *@param token may be empty!!!
   *@return true to halt further processing.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLParseState.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLParseState.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLParseState.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLParseState.java Thu Aug 15 16:29:57 2019
@@ -63,7 +63,7 @@ public class XMLParseState extends TagPa
     return false;
   }
 
-  /** This method is called for every <? ... ?> construct, or 'qtag'.
+  /** This method is called for every &lt;? ... ?&gt; construct, or 'qtag'.
   * Override it to intercept such constructs.
   *@return true to halt further processing.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/throttler/Throttler.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/throttler/Throttler.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/throttler/Throttler.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/throttler/Throttler.java Thu Aug 15 16:29:57 2019
@@ -418,7 +418,7 @@ public class Throttler
     // IConnectionThrottler support methods
     
     /** Wait for a connection to become available.
-    *@param poolCount is a description of how many connections
+    *@param poolCounts is a description of how many connections
     * are available in the current pool, across all bins.
     *@return the IConnectionThrottler codes for results.
     */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/DBCreate.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/DBCreate.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/DBCreate.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/DBCreate.java Thu Aug 15 16:29:57 2019
@@ -24,7 +24,7 @@ import org.apache.manifoldcf.core.system
 import org.apache.manifoldcf.core.system.Logging;
 
 /**
- * Create the database using the name as specified through the {@see ManifoldCF}. The username and password for the
+ * Create the database using the name as specified through the {@link ManifoldCF}. The username and password for the
  * configured database need to be specified during construction.
  */
 public class DBCreate extends DBInitializationCommand

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/DBDrop.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/DBDrop.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/DBDrop.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/DBDrop.java Thu Aug 15 16:29:57 2019
@@ -24,7 +24,7 @@ import org.apache.manifoldcf.core.system
 import org.apache.manifoldcf.core.system.Logging;
 
 /**
- * Drop the database using the name as specified through the {@see ManifoldCF}. The username and password for the
+ * Drop the database using the name as specified through the {@link ManifoldCF}. The username and password for the
  * configured database need to be specified during construction.
  */
 public class DBDrop extends DBInitializationCommand

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/auth/LdapAuthenticator.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/auth/LdapAuthenticator.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/auth/LdapAuthenticator.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/auth/LdapAuthenticator.java Thu Aug 15 16:29:57 2019
@@ -99,7 +99,6 @@ public class LdapAuthenticator implement
   /**
    * @param userId
    * @param password
-   * @return
    */
   @Override
   public boolean verifyUILogin(final String userId, final String password)

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/connector/BaseConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/connector/BaseConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/connector/BaseConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/connector/BaseConnector.java Thu Aug 15 16:29:57 2019
@@ -182,7 +182,7 @@ public abstract class BaseConnector impl
   
   /** Output the configuration body section.
   * This method is called in the body section of the authority connector's configuration page.  Its purpose is to present the required form elements for editing.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html>, <body>, and <form> tags.  The name of the
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the
   * form is "editconnection".
   *@param threadContext is the local thread context.
   *@param out is the output to which any HTML should be sent.
@@ -199,7 +199,7 @@ public abstract class BaseConnector impl
 
   /** Output the configuration body section.
   * This method is called in the body section of the connector's configuration page.  Its purpose is to present the required form elements for editing.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html>, <body>, and <form> tags.  The name of the
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the
   * form is "editconnection".
   *@param threadContext is the local thread context.
   *@param out is the output to which any HTML should be sent.
@@ -245,7 +245,7 @@ public abstract class BaseConnector impl
 
   /** View configuration.
   * This method is called in the body section of the authority connector's view configuration page.  Its purpose is to present the connection information to the user.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html> and <body> tags.
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt; and &lt;body&gt; tags.
   *@param threadContext is the local thread context.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the locale that the output should use.
@@ -260,7 +260,7 @@ public abstract class BaseConnector impl
 
   /** View configuration.
   * This method is called in the body section of the connector's view configuration page.  Its purpose is to present the connection information to the user.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html> and <body> tags.
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt; and &lt;body&gt; tags.
   *@param threadContext is the local thread context.
   *@param out is the output to which any HTML should be sent.
   *@param parameters are the configuration parameters, as they currently exist, for this connection being configured.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/database/BaseTable.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/database/BaseTable.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/database/BaseTable.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/database/BaseTable.java Thu Aug 15 16:29:57 2019
@@ -177,7 +177,7 @@ public class BaseTable
   *@param invalidateKeys are the cache keys, if needed (null if no cache desired).
   *@param queryClass is the LRU class name against which this query would be cached,
   * or null if no LRU behavior desired.
-  *@return a map of column names & ColumnDescription's, or null.
+  *@return a map of column names &amp; ColumnDescription's, or null.
   */
   protected Map getTableSchema(StringSet invalidateKeys, String queryClass)
     throws ManifoldCFException
@@ -291,7 +291,6 @@ public class BaseTable
   }
   
   /** Note a number of inserts, modifications, or deletions to a specific table.  This is so we can decide when to do appropriate maintenance.
-  *@param tableName is the name of the table being modified.
   *@param insertCount is the number of inserts.
   *@param modifyCount is the number of updates.
   *@param deleteCount is the number of deletions.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/IConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/IConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/IConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/IConnector.java Thu Aug 15 16:29:57 2019
@@ -111,7 +111,7 @@ public interface IConnector
   
   /** Output the configuration body section.
   * This method is called in the body section of the authority connector's configuration page.  Its purpose is to present the required form elements for editing.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html>, <body>, and <form> tags.  The name of the
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the
   * form is "editconnection".
   *@param threadContext is the local thread context.
   *@param out is the output to which any HTML should be sent.
@@ -137,7 +137,7 @@ public interface IConnector
   
   /** View configuration.
   * This method is called in the body section of the authority connector's view configuration page.  Its purpose is to present the connection information to the user.
-  * The coder can presume that the HTML that is output from this configuration will be within appropriate <html> and <body> tags.
+  * The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt; and &lt;body&gt; tags.
   *@param threadContext is the local thread context.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the locale that the output should use.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/ILockManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/ILockManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/ILockManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/ILockManager.java Thu Aug 15 16:29:57 2019
@@ -144,7 +144,6 @@ public interface ILockManager
   /** Get the current shared configuration.  This configuration is available in common among all nodes,
   * and thus must not be accessed through here for the purpose of finding configuration data that is specific to any one
   * specific node.
-  *@param configurationData is the globally-shared configuration information.
   */
   public ManifoldCFConfiguration getSharedConfiguration()
     throws ManifoldCFException;

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/BaseLockManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/BaseLockManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/BaseLockManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/BaseLockManager.java Thu Aug 15 16:29:57 2019
@@ -308,7 +308,6 @@ public class BaseLockManager implements
 
   /** Scan service data for a service type.  Only active service data will be considered.
   *@param serviceType is the type of service.
-  *@param dataType is the type of data.
   *@param dataAcceptor is the object that will be notified of each item of data for each service name found.
   */
   @Override
@@ -600,7 +599,6 @@ public class BaseLockManager implements
   /** Get the current shared configuration.  This configuration is available in common among all nodes,
   * and thus must not be accessed through here for the purpose of finding configuration data that is specific to any one
   * specific node.
-  *@param configurationData is the globally-shared configuration information.
   */
   @Override
   public ManifoldCFConfiguration getSharedConfiguration()

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockGate.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockGate.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockGate.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockGate.java Thu Aug 15 16:29:57 2019
@@ -34,59 +34,69 @@ import org.apache.manifoldcf.core.interf
 *   removed from the queue.  Write requests therefore serve to block read requests
 *   until the write request is serviced.
 * Preferred structure:
-* <wait_for_permission>
+* <pre>
+* &lt;wait_for_permission&gt;
 * try {
 * ... obtain the lock ...
 * } finally {
-*   <release_permission>
+*   &lt;release_permission&gt;
 * }
+* </pre>
 * Seeing lockups.  These lockups are characterized by a thread waiting on a lock object
 * while another thread waits on permission to do something else with the lock object.
 * It is by no means clear at this point how this situation causes a hang-up; the 
 * lock object is waiting to be awakened, but there is no obvious entity holding the lock elsewhere.
 * But one thread (A) seems always to be in a multi-lock situation, waiting to obtain a lock, e.g.:
+* <pre>
 	at java.lang.Object.wait(Native Method)
 	at java.lang.Object.wait(Object.java:503)
 	at org.apache.manifoldcf.core.lockmanager.LockObject.enterWriteLock(LockObject.java:80)
-	- locked <0x00000000fe205720> (a org.apache.manifoldcf.core.lockmanager.LockObject)
+	- locked &lt;0x00000000fe205720&gt; (a org.apache.manifoldcf.core.lockmanager.LockObject)
 	at org.apache.manifoldcf.core.lockmanager.LockGate.enterWriteLock(LockGate.java:132)
 	at org.apache.manifoldcf.core.lockmanager.BaseLockManager.enter(BaseLockManager.java:1483)
 	at org.apache.manifoldcf.core.lockmanager.BaseLockManager.enterCriticalSections(BaseLockManager.java:920)
 	at org.apache.manifoldcf.core.lockmanager.LockManager.enterCriticalSections(LockManager.java:455)
+	</pre>
 * Here's the second thread (B), which is waitingForPermission:
+* <pre>
 	at java.lang.Object.wait(Native Method)
-	- waiting on <0x00000000f8b71c78> (a org.apache.manifoldcf.core.lockmanager.LockGate)
+	- waiting on &lt;0x00000000f8b71c78&gt; (a org.apache.manifoldcf.core.lockmanager.LockGate)
 	at java.lang.Object.wait(Object.java:503)
 	at org.apache.manifoldcf.core.lockmanager.LockGate.waitForPermission(LockGate.java:91)
-	- locked <0x00000000f8b71c78> (a org.apache.manifoldcf.core.lockmanager.LockGate)
+	- locked &lt;0x00000000f8b71c78&gt; (a org.apache.manifoldcf.core.lockmanager.LockGate)
 	at org.apache.manifoldcf.core.lockmanager.LockGate.enterWriteLock(LockGate.java:129)
 	at org.apache.manifoldcf.core.lockmanager.BaseLockManager.enterWrite(BaseLockManager.java:1130)
 	at org.apache.manifoldcf.core.lockmanager.BaseLockManager.enterWriteCriticalSection(BaseLockManager.java:896)
 	at org.apache.manifoldcf.core.lockmanager.LockManager.enterWriteCriticalSection(LockManager.java:431)
 	at org.apache.manifoldcf.core.interfaces.IDFactory.make(IDFactory.java:55)
+	</pre>
 * The problem is that (A) has already obtained permission, but cannot obtain the lock.  (B) is somehow blocking
 * (A) from obtaining the lock even though it has not yet taken its own lock!  Or, maybe it has, and we don't see it in
 * the stack trace.
 * Another example: (C)
+* <pre>
 	at java.lang.Object.wait(Native Method)
-	- waiting on <0x00000000ffbdc038> (a org.apache.manifoldcf.core.lockmanager.LockGate)
+	- waiting on &lt;0x00000000ffbdc038&gt; (a org.apache.manifoldcf.core.lockmanager.LockGate)
 	at java.lang.Object.wait(Object.java:503)
 	at org.apache.manifoldcf.core.lockmanager.LockGate.waitForPermission(LockGate.java:91)
-	- locked <0x00000000ffbdc038> (a org.apache.manifoldcf.core.lockmanager.LockGate)
+	- locked &lt;0x00000000ffbdc038&gt; (a org.apache.manifoldcf.core.lockmanager.LockGate)
 	at org.apache.manifoldcf.core.lockmanager.LockGate.enterReadLock(LockGate.java:211)
 	at org.apache.manifoldcf.core.lockmanager.BaseLockManager.enter(BaseLockManager.java:1532)
 	at org.apache.manifoldcf.core.lockmanager.BaseLockManager.enterLocks(BaseLockManager.java:813)
 	at org.apache.manifoldcf.core.lockmanager.LockManager.enterLocks(LockManager.java:355)
+	</pre>
 * and (D):
+* <pre>
 	at java.lang.Object.wait(Native Method)
-	- waiting on <0x00000000ffbdd2f8> (a org.apache.manifoldcf.core.lockmanager.LockObject)
+	- waiting on &lt;0x00000000ffbdd2f8&gt; (a org.apache.manifoldcf.core.lockmanager.LockObject)
 	at java.lang.Object.wait(Object.java:503)
 	at org.apache.manifoldcf.core.lockmanager.LockObject.enterWriteLock(LockObject.java:83)
-	- locked <0x00000000ffbdd2f8> (a org.apache.manifoldcf.core.lockmanager.LockObject)
+	- locked &lt;0x00000000ffbdd2f8&gt; (a org.apache.manifoldcf.core.lockmanager.LockObject)
 	at org.apache.manifoldcf.core.lockmanager.LockGate.enterWriteLock(LockGate.java:132)
 	at org.apache.manifoldcf.core.lockmanager.BaseLockManager.enter(BaseLockManager.java:1483)
 	at org.apache.manifoldcf.core.lockmanager.BaseLockManager.enterLocks(BaseLockManager.java:813)
 	at org.apache.manifoldcf.core.lockmanager.LockManager.enterLocks(LockManager.java:355)
+	</pre>
 * Problem here: The LockGate 0x00000000ffbdc038 has no other instance anywhere, which should not be able to happen.
 * Debugging must entail dumping ALL outstanding locks periodically -- and who holds each.
 */

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockManager.java Thu Aug 15 16:29:57 2019
@@ -189,7 +189,6 @@ public class LockManager implements ILoc
   /** Get the current shared configuration.  This configuration is available in common among all nodes,
   * and thus must not be accessed through here for the purpose of finding configuration data that is specific to any one
   * specific node.
-  *@param configurationData is the globally-shared configuration information.
   */
   @Override
   public ManifoldCFConfiguration getSharedConfiguration()

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/ZooKeeperLockManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/ZooKeeperLockManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/ZooKeeperLockManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/ZooKeeperLockManager.java Thu Aug 15 16:29:57 2019
@@ -657,7 +657,6 @@ public class ZooKeeperLockManager extend
   /** Get the current shared configuration.  This configuration is available in common among all nodes,
   * and thus must not be accessed through here for the purpose of finding configuration data that is specific to any one
   * specific node.
-  *@param configurationData is the globally-shared configuration information.
   */
   @Override
   public ManifoldCFConfiguration getSharedConfiguration()

Modified: manifoldcf/branches/CONNECTORS-1618/framework/core/src/test/java/org/apache/manifoldcf/core/tests/SeleniumTester.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/core/src/test/java/org/apache/manifoldcf/core/tests/SeleniumTester.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/core/src/test/java/org/apache/manifoldcf/core/tests/SeleniumTester.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/core/src/test/java/org/apache/manifoldcf/core/tests/SeleniumTester.java Thu Aug 15 16:29:57 2019
@@ -211,7 +211,6 @@ public class SeleniumTester
   /**
    * Find an element by waiting we find it based on its visibility
    * @param selector
-   * @return
    */
   public WebElement waitFindElement(By selector)
   {
@@ -221,7 +220,6 @@ public class SeleniumTester
   /**
    * Find an element by waiting until it becomes clickable
    * @param selector
-   * @return
    */
   public WebElement waitElementClickable(By selector)
   {
@@ -231,7 +229,6 @@ public class SeleniumTester
   /**
    * Find an element by waiting until we find it's presence in dom
    * @param selector
-   * @return
    */
   public WebElement waitUntilPresenceOfElementLocated(By selector)
   {
@@ -381,7 +378,6 @@ public class SeleniumTester
 
   /**
    * Check if a alert box appeared in the browser.s
-   * @return
    */
   public boolean isAlertPresent()
   {
@@ -476,7 +472,6 @@ public class SeleniumTester
    * Check if an element has a class
    * @param element
    * @param className
-   * @return
    */
   private boolean hasClass(WebElement element, String className)
   {
@@ -489,7 +484,6 @@ public class SeleniumTester
    * Get the attribute value of an element
    * @param id
    * @param attribute
-   * @return
    */
   public String getAttributeValueById(String id, String attribute)
   {
@@ -724,7 +718,6 @@ public class SeleniumTester
 
   /**
    * Get the source of the html document
-   * @return
    */
   public String getRenderedSource()
   {
@@ -734,7 +727,6 @@ public class SeleniumTester
   /**
    * Get the source of an element by find it in DOM
    * @param selector
-   * @return
    */
   public String getRenderedSource(By selector)
   {
@@ -744,7 +736,6 @@ public class SeleniumTester
   /**
    * Get the source of an element
    * @param element
-   * @return
    */
   public String getRenderedSource(WebElement element)
   {

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authconnmgr/AuthorityConnectorManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authconnmgr/AuthorityConnectorManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authconnmgr/AuthorityConnectorManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authconnmgr/AuthorityConnectorManager.java Thu Aug 15 16:29:57 2019
@@ -27,7 +27,7 @@ import org.apache.manifoldcf.authorities
  * 
  * <br><br>
  * <b>authconnectors</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authdomains/AuthorizationDomainManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authdomains/AuthorizationDomainManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authdomains/AuthorizationDomainManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authdomains/AuthorizationDomainManager.java Thu Aug 15 16:29:57 2019
@@ -27,7 +27,7 @@ import org.apache.manifoldcf.authorities
  * 
  * <br><br>
  * <b>authdomains</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authgroups/AuthorityGroupManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authgroups/AuthorityGroupManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authgroups/AuthorityGroupManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authgroups/AuthorityGroupManager.java Thu Aug 15 16:29:57 2019
@@ -31,7 +31,7 @@ import org.apache.manifoldcf.crawler.int
  * 
  * <br><br>
  * <b>authgroups</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>groupname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authority/AuthorityConnectionManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authority/AuthorityConnectionManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authority/AuthorityConnectionManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authority/AuthorityConnectionManager.java Thu Aug 15 16:29:57 2019
@@ -31,7 +31,7 @@ import org.apache.manifoldcf.crawler.int
  * 
  * <br><br>
  * <b>authconnections</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>authorityname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/interfaces/IAuthorityConnectorPool.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/interfaces/IAuthorityConnectorPool.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/interfaces/IAuthorityConnectorPool.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/interfaces/IAuthorityConnectorPool.java Thu Aug 15 16:29:57 2019
@@ -41,7 +41,7 @@ public interface IAuthorityConnectorPool
 
   /** Get an authority connector.
   * The connector is specified by an authority connection object.
-  *@param outputConnection is the authority connection to base the connector instance on.
+  *@param authorityConnection is the authority connection to base the connector instance on.
   */
   public IAuthorityConnector grab(IAuthorityConnection authorityConnection)
     throws ManifoldCFException;

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapconnmgr/MappingConnectorManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapconnmgr/MappingConnectorManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapconnmgr/MappingConnectorManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapconnmgr/MappingConnectorManager.java Thu Aug 15 16:29:57 2019
@@ -27,7 +27,7 @@ import org.apache.manifoldcf.authorities
  * 
  * <br><br>
  * <b>mapconnectors</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapping/MappingConnectionManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapping/MappingConnectionManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapping/MappingConnectionManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapping/MappingConnectionManager.java Thu Aug 15 16:29:57 2019
@@ -28,7 +28,7 @@ import org.apache.manifoldcf.authorities
  * 
  * <br><br>
  * <b>mapconnections</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>mappingname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/bins/BinManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/bins/BinManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/bins/BinManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/bins/BinManager.java Thu Aug 15 16:29:57 2019
@@ -31,7 +31,7 @@ import java.util.*;
 * 
 * <br><br>
 * <b>docbins</b>
-* <table border="1" cellpadding="3" cellspacing="0">
+* <table border="1" cellpadding="3" cellspacing="0" summary="">
 * <tr class="TableHeadingColor">
 * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
 * <tr><td>binname</td><td>VARCHAR(255)</td><td>Primary Key</td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java Thu Aug 15 16:29:57 2019
@@ -141,7 +141,7 @@ public abstract class BaseRepositoryConn
   *@param activities is the interface this method should use to perform whatever framework actions are desired.
   *@param spec is a document specification (that comes from the job).
   *@param seedTime is the end of the time range of documents to consider, exclusive.
-  *@param lastSeedVersionString is the last seeding version string for this job, or null if the job has no previous seeding version string.
+  *@param lastSeedVersion is the last seeding version string for this job, or null if the job has no previous seeding version string.
   *@param jobMode is an integer describing how the job is being run, whether continuous or once-only.
   *@return an updated seeding version string, to be stored with the job.
   */
@@ -236,7 +236,7 @@ public abstract class BaseRepositoryConn
   * This method is called in the body section of a job page which has selected a repository connection of the
   * current type.  Its purpose is to present the required form elements for editing.
   * The coder can presume that the HTML that is output from this configuration will be within appropriate
-  *  <html>, <body>, and <form> tags.  The name of the form is always "editjob".
+  *  &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the form is always "editjob".
   * The connector will be connected before this method can be called.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the locale the output is preferred to be in.
@@ -276,7 +276,7 @@ public abstract class BaseRepositoryConn
   /** View specification.
   * This method is called in the body section of a job's view page.  Its purpose is to present the document
   * specification information to the user.  The coder can presume that the HTML that is output from
-  * this configuration will be within appropriate <html> and <body> tags.
+  * this configuration will be within appropriate &lt;html&gt; and &lt;body&gt;tags.
   * The connector will be connected before this method can be called.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the locale the output is preferred to be in.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connmgr/ConnectorManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connmgr/ConnectorManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connmgr/ConnectorManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connmgr/ConnectorManager.java Thu Aug 15 16:29:57 2019
@@ -27,7 +27,7 @@ import java.util.*;
  * 
  * <br><br>
  * <b>connectors</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnector.java Thu Aug 15 16:29:57 2019
@@ -139,7 +139,7 @@ public interface INotificationConnector
   * This method is called in the body section of a job page which has selected a repository connection of the
   * current type.  Its purpose is to present the required form elements for editing.
   * The coder can presume that the HTML that is output from this configuration will be within appropriate
-  *  <html>, <body>, and <form> tags.  The name of the form is always "editjob".
+  *  &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the form is always "editjob".
   * The connector will be connected before this method can be called.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the locale the output is preferred to be in.
@@ -172,7 +172,7 @@ public interface INotificationConnector
   /** View specification.
   * This method is called in the body section of a job's view page.  Its purpose is to present the document
   * specification information to the user.  The coder can presume that the HTML that is output from
-  * this configuration will be within appropriate <html> and <body> tags.
+  * this configuration will be within appropriate &lt;html&gt; and &lt;body&gt;tags.
   * The connector will be connected before this method can be called.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the locale the output is preferred to be in.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnectorPool.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnectorPool.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnectorPool.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnectorPool.java Thu Aug 15 16:29:57 2019
@@ -20,9 +20,6 @@ package org.apache.manifoldcf.crawler.in
 
 import org.apache.manifoldcf.core.interfaces.*;
 
-import java.util.*;
-import java.io.*;
-
 /** An object implementing this interface functions as a pool of notification connectors.
 * Coordination and allocation among cluster members is managed within. 
 * These objects are thread-local, so do not share them among threads.
@@ -36,7 +33,7 @@ public interface INotificationConnectorP
   *@param orderingKeys are the keys which determine in what order the connectors are obtained.
   *@param notificationConnections are the connections to use the build the connector instances.
   */
-  public INotificationConnector[] grabMultiple(String[] orderingKeys, INotificationConnection[] authorityConnections)
+  public INotificationConnector[] grabMultiple(String[] orderingKeys, INotificationConnection[] notificationConnections)
     throws ManifoldCFException;
 
   /** Get a notification connector.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.java Thu Aug 15 16:29:57 2019
@@ -177,7 +177,7 @@ public interface IRepositoryConnector ex
   *@param activities is the interface this method should use to perform whatever framework actions are desired.
   *@param spec is a document specification (that comes from the job).
   *@param seedTime is the end of the time range of documents to consider, exclusive.
-  *@param lastSeedVersionString is the last seeding version string for this job, or null if the job has no previous seeding version string.
+  *@param lastSeedVersion is the last seeding version string for this job, or null if the job has no previous seeding version string.
   *@param jobMode is an integer describing how the job is being run, whether continuous or once-only.
   *@return an updated seeding version string, to be stored with the job.
   */
@@ -252,7 +252,7 @@ public interface IRepositoryConnector ex
   * This method is called in the body section of a job page which has selected a repository connection of the
   * current type.  Its purpose is to present the required form elements for editing.
   * The coder can presume that the HTML that is output from this configuration will be within appropriate
-  *  <html>, <body>, and <form> tags.  The name of the form is always "editjob".
+  *  &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags.  The name of the form is always "editjob".
   * The connector will be connected before this method can be called.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the locale the output is preferred to be in.
@@ -285,7 +285,7 @@ public interface IRepositoryConnector ex
   /** View specification.
   * This method is called in the body section of a job's view page.  Its purpose is to present the document
   * specification information to the user.  The coder can presume that the HTML that is output from
-  * this configuration will be within appropriate <html> and <body> tags.
+  * this configuration will be within appropriate &lt;html&gt; and &lt;body&gt;tags.
   * The connector will be connected before this method can be called.
   *@param out is the output to which any HTML should be sent.
   *@param locale is the locale the output is preferred to be in.

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnectorPool.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnectorPool.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnectorPool.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnectorPool.java Thu Aug 15 16:29:57 2019
@@ -20,9 +20,6 @@ package org.apache.manifoldcf.crawler.in
 
 import org.apache.manifoldcf.core.interfaces.*;
 
-import java.util.*;
-import java.io.*;
-
 /** An object implementing this interface functions as a pool of repository connectors.
 * Coordination and allocation among cluster members is managed within. 
 * These objects are thread-local, so do not share them among threads.
@@ -34,7 +31,7 @@ public interface IRepositoryConnectorPoo
   /** Get multiple repository connectors, all at once.  Do this in a particular order
   * so that any connector exhaustion will not cause a deadlock.
   *@param orderingKeys are the keys which determine in what order the connectors are obtained.
-  *@param repositoryConnections are the connections to use the build the connector instances.
+  *@param authorityConnections are the connections to use the build the connector instances.
   */
   public IRepositoryConnector[] grabMultiple(String[] orderingKeys, IRepositoryConnection[] authorityConnections)
     throws ManifoldCFException;

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IReprioritizationTracker.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IReprioritizationTracker.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IReprioritizationTracker.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IReprioritizationTracker.java Thu Aug 15 16:29:57 2019
@@ -40,7 +40,7 @@ public interface IReprioritizationTracke
   
   /** Complete a reprioritization activity.  Prioritization will be marked as complete
   * only if the processID matches the one that started the current reprioritization.
-  *@param processID is the process ID of the process completing the prioritization.
+  *@param reproID is the process ID of the process completing the prioritization.
   */
   public void doneReprioritization(String reproID)
     throws ManifoldCFException;

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Carrydown.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Carrydown.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Carrydown.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Carrydown.java Thu Aug 15 16:29:57 2019
@@ -29,7 +29,7 @@ import org.apache.manifoldcf.crawler.sys
  * 
  * <br><br>
  * <b>carrydown</b>
- * <table border="1" cellpadding="3" cellspacing="0">
+ * <table border="1" cellpadding="3" cellspacing="0" summary="">
  * <tr class="TableHeadingColor">
  * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
  * <tr><td>jobid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java Thu Aug 15 16:29:57 2019
@@ -30,7 +30,7 @@ import java.util.*;
 * 
 * <br><br>
 * <b>events</b>
-* <table border="1" cellpadding="3" cellspacing="0">
+* <table border="1" cellpadding="3" cellspacing="0" summary="">
 * <tr class="TableHeadingColor">
 * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
 * <tr><td>name</td><td>VARCHAR(255)</td><td>Primary Key</td></tr>

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopCount.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopCount.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopCount.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopCount.java Thu Aug 15 16:29:57 2019
@@ -30,7 +30,7 @@ import org.apache.manifoldcf.crawler.sys
 * 
 * <br><br>
 * <b>hopcount</b>
-* <table border="1" cellpadding="3" cellspacing="0">
+* <table border="1" cellpadding="3" cellspacing="0" summary="">
 * <tr class="TableHeadingColor">
 * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
 * <tr><td>id</td><td>BIGINT</td><td>Primary Key</td></tr>
@@ -2198,7 +2198,7 @@ public class HopCount extends org.apache
   * This basically includes the following:
   * - the document identifier
   * - the 'question' that was asked, which has the form (link type, maximum distance)
-  * - possibly the 'answer' to the question, which is either ">(maximum distance)", or a number.
+  * - possibly the 'answer' to the question, which is either "&gt;(maximum distance)", or a number.
   * - references to the nodes which care about this answer, if they are still queued.
   * - summary of the information we've gathered from children so far (if answer not known yet)
   * - references to the children of this node that can affect the answer, including link details

Modified: manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopDeleteDeps.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopDeleteDeps.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopDeleteDeps.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopDeleteDeps.java Thu Aug 15 16:29:57 2019
@@ -29,7 +29,7 @@ import java.util.*;
 * 
 * <br><br>
 * <b>hopdeletedeps</b>
-* <table border="1" cellpadding="3" cellspacing="0">
+* <table border="1" cellpadding="3" cellspacing="0" summary="">
 * <tr class="TableHeadingColor">
 * <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
 * <tr><td>jobid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr>