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 [2/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/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java Thu Aug 15 16:29:57 2019
@@ -46,28 +46,28 @@ import java.util.regex.Pattern;
 /**
 * This interface describes an instance of a connection between a repository and ManifoldCF's
 * standard "pull" ingestion agent.
-* <p/>
+* <p>
 * Each instance of this interface is used in only one thread at a time. Connection Pooling
 * on these kinds of objects is performed by the factory which instantiates repository connectors
 * from symbolic names and config parameters, and is pooled by these parameters. That is, a pooled connector
 * handle is used only if all the connection parameters for the handle match.
-* <p/>
+* <p>
 * Implementers of this interface should provide a default constructor which has this signature:
-* <p/>
+* <pre>
 * xxx();
-* <p/>
+* </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
 * capabilities. The complete list is:
-* <p/>
-* <p/>
+* <p>
+* <p>
 * The purpose of the repository connector is to allow documents to be fetched from the repository.
-* <p/>
+* <p>
 * Each repository connector describes a set of documents that are known only to that connector.
 * It therefore establishes a space of document identifiers. Each connector will only ever be
 * asked to deal with identifiers that have in some way originated from the connector.
-* <p/>
+* <p>
 * Documents are fetched in three stages. First, the getDocuments() method is called in the connector
 * implementation. This returns a set of document identifiers. The document identifiers are used to
 * obtain the current document version strings in the second stage, using the getDocumentVersions() method.
@@ -1204,8 +1204,8 @@ public class EmailConnector extends org.
   * 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.
+  * 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.
@@ -1257,7 +1257,7 @@ public class EmailConnector extends org.
   * 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.
@@ -1513,7 +1513,7 @@ public class EmailConnector extends org.
   /** 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/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/email/EmailConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/email/EmailConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/email/EmailConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/notifications/email/EmailConnector.java Thu Aug 15 16:29:57 2019
@@ -472,8 +472,8 @@ public class EmailConnector extends org.
   * 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.
+  * 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.
@@ -523,7 +523,7 @@ public class EmailConnector extends org.
   * 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.
@@ -708,7 +708,7 @@ public class EmailConnector extends org.
   /** 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/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java Thu Aug 15 16:29:57 2019
@@ -699,7 +699,7 @@ public class FilenetConnector extends or
   *@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.
   */
@@ -1492,7 +1492,7 @@ public class FilenetConnector extends or
   
   /** 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.
@@ -1740,7 +1740,7 @@ public class FilenetConnector extends or
   
   /** 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.
@@ -1871,7 +1871,7 @@ public class FilenetConnector extends or
   * 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.
@@ -2799,7 +2799,7 @@ public class FilenetConnector extends or
   /** 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/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/agents/output/filesystem/FileOutputConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/agents/output/filesystem/FileOutputConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/agents/output/filesystem/FileOutputConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/agents/output/filesystem/FileOutputConnector.java Thu Aug 15 16:29:57 2019
@@ -500,7 +500,7 @@ public class FileOutputConnector extends
 
   /** 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.
@@ -547,7 +547,7 @@ public class FileOutputConnector extends
 
   /** 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/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java Thu Aug 15 16:29:57 2019
@@ -110,8 +110,7 @@ public class FileConnector extends org.a
 
   /** Convert a document identifier to a URI.  The URI is the URI that will be the unique key from
   * the search index, and will be presented to the user as part of the search results.
-  *@param filePath is the document filePath.
-  *@param repositoryPath is the document repositoryPath.
+  *@param path is the document filePath.
   *@return the document uri.
   */
   protected static String convertToWGETURI(String path)
@@ -194,7 +193,7 @@ public class FileConnector extends org.a
   *@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.
   */
@@ -489,7 +488,6 @@ public class FileConnector extends org.a
   /** This method finds the part of the path that should be converted to a URI.
   * Returns null if the path should not be converted.
   *@param spec is the document specification.
-  *@param documentIdentifier is the document identifier.
   *@return the part of the path to be converted, or null.
   */
   protected static String findConvertPath(Specification spec, File theFile)
@@ -572,7 +570,7 @@ public class FileConnector extends org.a
   * 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.
@@ -992,7 +990,7 @@ public class FileConnector extends org.a
   /** 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/connectors/forcedmetadata/connector/src/main/java/org/apache/manifoldcf/agents/transformation/forcedmetadata/ForcedMetadataConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/forcedmetadata/connector/src/main/java/org/apache/manifoldcf/agents/transformation/forcedmetadata/ForcedMetadataConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/forcedmetadata/connector/src/main/java/org/apache/manifoldcf/agents/transformation/forcedmetadata/ForcedMetadataConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/forcedmetadata/connector/src/main/java/org/apache/manifoldcf/agents/transformation/forcedmetadata/ForcedMetadataConnector.java Thu Aug 15 16:29:57 2019
@@ -77,7 +77,7 @@ public class ForcedMetadataConnector ext
   * 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,
@@ -344,7 +344,7 @@ public class ForcedMetadataConnector ext
   
   /** 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.
@@ -485,7 +485,7 @@ public class ForcedMetadataConnector ext
   
   /** 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/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java Thu Aug 15 16:29:57 2019
@@ -192,7 +192,7 @@ public class GoogleDriveRepositoryConnec
    * connector will retrieve all the repositories exposed for this endpoint
    * the it will start to use the first one.
    *
-   * @param configParameters is the set of configuration parameters, which in
+   * @param configParams is the set of configuration parameters, which in
    * this case describe the target appliance, basic auth configuration, etc.
    * (This formerly came out of the ini file.)
    */
@@ -457,8 +457,8 @@ public class GoogleDriveRepositoryConnec
    * 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.
+   * 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.
@@ -597,7 +597,7 @@ public class GoogleDriveRepositoryConnec
   /** 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.
@@ -702,7 +702,7 @@ public class GoogleDriveRepositoryConnec
   * 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.
@@ -781,7 +781,7 @@ public class GoogleDriveRepositoryConnec
   *@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.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/gridfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/gridfs/GridFSRepositoryConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/gridfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/gridfs/GridFSRepositoryConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/gridfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/gridfs/GridFSRepositoryConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/gridfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/gridfs/GridFSRepositoryConnector.java Thu Aug 15 16:29:57 2019
@@ -342,7 +342,7 @@ public class GridFSRepositoryConnector e
     *@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.
      */
@@ -591,7 +591,7 @@ public class GridFSRepositoryConnector e
      * 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 form is always
+     * &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags. The name of the form is always
      * "editconnection". The connector does not need to be connected for this
      * method to be called.
      *
@@ -687,8 +687,8 @@ public class GridFSRepositoryConnector e
      * 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 connector does not need to be connected for this
+     * that is output from this configuration will be within appropriate &lt;html&gt;
+     * and &lt;body&gt; tags. The connector does not need to be connected for this
      * method to be called.
      *
      * @param threadContext is the local thread context.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/gts/connector/src/main/java/org/apache/manifoldcf/agents/output/gts/GTSConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/gts/connector/src/main/java/org/apache/manifoldcf/agents/output/gts/GTSConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/gts/connector/src/main/java/org/apache/manifoldcf/agents/output/gts/GTSConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/gts/connector/src/main/java/org/apache/manifoldcf/agents/output/gts/GTSConnector.java Thu Aug 15 16:29:57 2019
@@ -401,7 +401,7 @@ public class GTSConnector extends org.ap
   
   /** 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.
@@ -508,7 +508,7 @@ public class GTSConnector extends org.ap
   
   /** 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.
@@ -597,7 +597,7 @@ public class GTSConnector extends org.ap
   
   /** 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.
@@ -741,7 +741,7 @@ public class GTSConnector extends org.ap
   
   /** 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/connectors/gts/connector/src/main/java/org/apache/manifoldcf/agents/output/gts/HttpPoster.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/gts/connector/src/main/java/org/apache/manifoldcf/agents/output/gts/HttpPoster.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/gts/connector/src/main/java/org/apache/manifoldcf/agents/output/gts/HttpPoster.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/gts/connector/src/main/java/org/apache/manifoldcf/agents/output/gts/HttpPoster.java Thu Aug 15 16:29:57 2019
@@ -143,7 +143,8 @@ public class HttpPoster
   * @param documentURI is the document's uri.
   * @param document is the document structure to ingest.
   * @return true if the ingestion was successful, or false if the ingestion is illegal.
-  * @throws ManifoldCFException, ServiceInterruption
+  * @throws ManifoldCFException
+  * @throws ServiceInterruption
   */
   public boolean indexPost(String documentURI,
     List<String> collections, String documentTemplate, String authorityNameString,

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/agents/output/hdfs/HDFSOutputConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/agents/output/hdfs/HDFSOutputConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/agents/output/hdfs/HDFSOutputConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/agents/output/hdfs/HDFSOutputConnector.java Thu Aug 15 16:29:57 2019
@@ -111,7 +111,7 @@ public class HDFSOutputConnector extends
   }
 
   /** Connect.
-   *@param configParameters is the set of configuration parameters, which
+   *@param configParams is the set of configuration parameters, which
    * in this case describe the target appliance, basic auth configuration, etc.  (This formerly came
    * out of the ini file.)
    */
@@ -351,7 +351,7 @@ public class HDFSOutputConnector extends
 
   /** 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.
@@ -382,7 +382,7 @@ public class HDFSOutputConnector extends
 
   /** 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.
@@ -412,7 +412,7 @@ public class HDFSOutputConnector extends
 
   /** 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.
@@ -459,7 +459,7 @@ public class HDFSOutputConnector extends
 
   /** 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.
@@ -474,7 +474,6 @@ public class HDFSOutputConnector extends
 
   /**
    * @param os
-   * @return
    */
   final private SpecificationNode getSpecNode(Specification os)
   {
@@ -490,7 +489,6 @@ public class HDFSOutputConnector extends
 
   /**
    * @param os
-   * @return
    * @throws ManifoldCFException
    */
   final private HDFSOutputSpecs getSpecParameters(Specification os) throws ManifoldCFException {
@@ -499,7 +497,6 @@ public class HDFSOutputConnector extends
 
   /**
    * @param configParams
-   * @return
    */
   final private HDFSOutputConfig getConfigParameters(ConfigParams configParams) {
     if (configParams == null)
@@ -534,7 +531,6 @@ public class HDFSOutputConnector extends
 
   /**
    * @param documentURI
-   * @return
    * @throws URISyntaxException
    */
   final private String documentURItoFilePath(String documentURI) throws URISyntaxException {
@@ -863,8 +859,6 @@ public class HDFSOutputConnector extends
 
     /** Build a set of ElasticSearch parameters by reading an JSON object
      * 
-     * @param json
-     * @throws JSONException
      * @throws ManifoldCFException
      */
     public HDFSOutputSpecs(String versionString) throws ManifoldCFException {
@@ -920,7 +914,6 @@ public class HDFSOutputConnector extends
     }
 
     /**
-     * @return
      */
     public String getRootPath() {
       return get(ParameterEnum.rootpath);
@@ -928,7 +921,6 @@ public class HDFSOutputConnector extends
 
     /**
      * @param content
-     * @return
      * @throws ManifoldCFException
      */
     private final static TreeSet<String> createStringSet(String content) throws ManifoldCFException {

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java Thu Aug 15 16:29:57 2019
@@ -285,7 +285,7 @@ public class HDFSRepositoryConnector ext
   *@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.
   */
@@ -576,7 +576,7 @@ public class HDFSRepositoryConnector ext
   
   /** 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.
@@ -695,7 +695,7 @@ public class HDFSRepositoryConnector ext
   
   /** 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.
@@ -772,7 +772,7 @@ public class HDFSRepositoryConnector ext
   * 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.
@@ -1191,7 +1191,7 @@ public class HDFSRepositoryConnector ext
   /** 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.
@@ -1323,8 +1323,7 @@ public class HDFSRepositoryConnector ext
 
   /** Convert a path to an HDFS wget URI.  The URI is the URI that will be the unique key from
   * the search index, and will be presented to the user as part of the search results.
-  *@param filePath is the document filePath.
-  *@param repositoryPath is the document repositoryPath.
+  *@param path is the document filePath.
   *@return the document uri.
   */
   protected static String convertToWGETURI(String path)
@@ -1366,7 +1365,6 @@ public class HDFSRepositoryConnector ext
   /** This method finds the part of the path that should be converted to a URI.
   * Returns null if the path should not be converted.
   *@param spec is the document specification.
-  *@param documentIdentifier is the document identifier.
   *@return the part of the path to be converted, or null.
   */
   protected static String findConvertPath(String nameNode, Specification spec, Path theFile)
@@ -1517,7 +1515,6 @@ public class HDFSRepositoryConnector ext
 
   /** Check if a file should be ingested, given a document specification.  It is presumed that
    * documents that do not pass checkInclude() will be checked with this method.
-   *@param file is the file.
    *@param documentSpecification is the specification.
    */
   protected static boolean checkIngest(String nameNode, FileStatus fileStatus, Specification documentSpecification)

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/html-extractor/connector/src/main/java/org/apache/manifoldcf/agents/transformation/htmlextractor/HtmlExtractor.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/html-extractor/connector/src/main/java/org/apache/manifoldcf/agents/transformation/htmlextractor/HtmlExtractor.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/html-extractor/connector/src/main/java/org/apache/manifoldcf/agents/transformation/htmlextractor/HtmlExtractor.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/html-extractor/connector/src/main/java/org/apache/manifoldcf/agents/transformation/htmlextractor/HtmlExtractor.java Thu Aug 15 16:29:57 2019
@@ -91,7 +91,7 @@ public class HtmlExtractor extends org.a
    * 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,
@@ -414,8 +414,8 @@ public class HtmlExtractor extends org.a
    * 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 form is "editconnection".
+   * 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.
@@ -466,8 +466,8 @@ public class HtmlExtractor extends org.a
    * 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.
+   * 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.
@@ -563,7 +563,7 @@ public void outputSpecificationHeader(fi
  * 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.
+ * 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
@@ -732,7 +732,7 @@ public String processSpecificationPost(f
  * 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.
+ * 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.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/MatchMap.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/MatchMap.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/MatchMap.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/MatchMap.java Thu Aug 15 16:29:57 2019
@@ -28,7 +28,7 @@ import java.util.regex.*;
 * search and replace, where the replace string can include references to the groups present in the
 * search regexp.
 * MatchMaps can be converted to strings in two different ways.  The first way is to build a single
-* string of the form "match1=replace1&match2=replace2...".  Strings of this kind must escape & and =
+* string of the form "match1=replace1&amp;match2=replace2...".  Strings of this kind must escape &amp; and =
 * characters in the match and replace strings, where found.  The second way is to generate an array
 * of match strings and a corresponding array of replace strings.  This method requires no escaping
 * of the string contents.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java Thu Aug 15 16:29:57 2019
@@ -2619,7 +2619,7 @@ public class SharedDriveConnector extend
   
   /** 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.
@@ -2743,7 +2743,7 @@ public class SharedDriveConnector extend
   
   /** 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.
@@ -2945,7 +2945,7 @@ public class SharedDriveConnector extend
   * 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.
@@ -4230,7 +4230,7 @@ public class SharedDriveConnector extend
   /** 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/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jdbc/JDBCAuthority.java Thu Aug 15 16:29:57 2019
@@ -386,8 +386,8 @@ public class JDBCAuthority extends BaseA
    * 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 form is "editconnection".
+   * 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.
@@ -602,8 +602,8 @@ public class JDBCAuthority extends BaseA
    * 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.
+   * 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.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jdbc/JDBCConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jdbc/JDBCConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jdbc/JDBCConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jdbc/JDBCConnector.java Thu Aug 15 16:29:57 2019
@@ -196,7 +196,7 @@ public class JDBCConnector extends org.a
   *@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.
   */
@@ -1027,7 +1027,7 @@ public class JDBCConnector extends org.a
   
   /** 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.
@@ -1198,7 +1198,7 @@ public class JDBCConnector extends org.a
   
   /** 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.
@@ -1427,7 +1427,7 @@ public class JDBCConnector extends org.a
   * 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.
@@ -1939,7 +1939,7 @@ public class JDBCConnector extends org.a
   /** 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.
@@ -2195,8 +2195,6 @@ public class JDBCConnector extends org.a
   
   /** Apply access tokens to a repository document.
   *@param rd is the repository document to apply the access tokens to.
-  *@param version is the version string.
-  *@param spec is the document specification.
   */
   protected void applyAccessTokens(RepositoryDocument rd, Set<String> accessTokens)
     throws ManifoldCFException

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/jira/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/jira/JiraAuthorityConnector.java Thu Aug 15 16:29:57 2019
@@ -125,7 +125,7 @@ public class JiraAuthorityConnector exte
    * connector will retrieve all the repositories exposed for this endpoint
    * the it will start to use the first one.
    *
-   * @param configParameters is the set of configuration parameters, which in
+   * @param configParams is the set of configuration parameters, which in
    * this case describe the target appliance, basic auth configuration, etc.
    * (This formerly came out of the ini file.)
    */
@@ -357,8 +357,8 @@ public class JiraAuthorityConnector exte
    * 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.
+   * 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.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/jira/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jira/JiraRepositoryConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/jira/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jira/JiraRepositoryConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/jira/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jira/JiraRepositoryConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/jira/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jira/JiraRepositoryConnector.java Thu Aug 15 16:29:57 2019
@@ -206,7 +206,7 @@ public class JiraRepositoryConnector ext
    * connector will retrieve all the repositories exposed for this endpoint
    * the it will start to use the first one.
    *
-   * @param configParameters is the set of configuration parameters, which in
+   * @param configParams is the set of configuration parameters, which in
    * this case describe the target appliance, basic auth configuration, etc.
    * (This formerly came out of the ini file.)
    */
@@ -461,8 +461,8 @@ public class JiraRepositoryConnector ext
    * 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.
+   * 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.
@@ -647,7 +647,7 @@ public class JiraRepositoryConnector ext
   /** 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.
@@ -767,7 +767,7 @@ public class JiraRepositoryConnector ext
   * 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.
@@ -846,7 +846,7 @@ public class JiraRepositoryConnector ext
   *@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.
   */

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/kafka/connector/src/main/java/org/apache/manifoldcf/agents/output/kafka/KafkaOutputConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/kafka/connector/src/main/java/org/apache/manifoldcf/agents/output/kafka/KafkaOutputConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/kafka/connector/src/main/java/org/apache/manifoldcf/agents/output/kafka/KafkaOutputConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/kafka/connector/src/main/java/org/apache/manifoldcf/agents/output/kafka/KafkaOutputConnector.java Thu Aug 15 16:29:57 2019
@@ -312,7 +312,7 @@ public class KafkaOutputConnector extend
    * data.
    */
   @Override
-  public int addOrReplaceDocumentWithException(String documentURI, VersionContext outputDescription, RepositoryDocument document, String authorityNameString, IOutputAddActivity activities)
+  public int addOrReplaceDocumentWithException(String documentURI, VersionContext pipelineDescription, RepositoryDocument document, String authorityNameString, IOutputAddActivity activities)
           throws ManifoldCFException, ServiceInterruption, IOException {
     //System.out.println("Starting to ingest document....");
     try {

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/ldap/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/ldap/LDAPAuthority.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/ldap/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/ldap/LDAPAuthority.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/ldap/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/ldap/LDAPAuthority.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/ldap/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/ldap/LDAPAuthority.java Thu Aug 15 16:29:57 2019
@@ -572,7 +572,7 @@ public class LDAPAuthority extends org.a
    * 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 form is "editconnection".
+   * &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.
@@ -751,8 +751,8 @@ public class LDAPAuthority extends org.a
    * 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.
+   * 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.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/livelink/LivelinkAuthority.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/livelink/LivelinkAuthority.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/livelink/LivelinkAuthority.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/livelink/LivelinkAuthority.java Thu Aug 15 16:29:57 2019
@@ -587,7 +587,7 @@ public class LivelinkAuthority extends o
   
   /** 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.
@@ -820,7 +820,7 @@ public class LivelinkAuthority extends o
   
   /** 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 parameters are the configuration parameters, as they currently exist, for this connection being configured.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java Thu Aug 15 16:29:57 2019
@@ -1013,7 +1013,7 @@ public class LivelinkConnector extends o
   *@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.
   */
@@ -1582,7 +1582,7 @@ public class LivelinkConnector extends o
   
   /** 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.
@@ -1984,7 +1984,7 @@ public class LivelinkConnector extends o
   
   /** 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.
@@ -2055,7 +2055,7 @@ public class LivelinkConnector extends o
   * 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.
@@ -2868,7 +2868,7 @@ public class LivelinkConnector extends o
   /** 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/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/meridio/MeridioAuthority.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/meridio/MeridioAuthority.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/meridio/MeridioAuthority.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/meridio/MeridioAuthority.java Thu Aug 15 16:29:57 2019
@@ -856,7 +856,7 @@ public class MeridioAuthority extends or
   
   /** 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.
@@ -1352,7 +1352,7 @@ public class MeridioAuthority extends or
   
   /** 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 parameters are the configuration parameters, as they currently exist, for this connection being configured.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/meridio/MeridioConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/meridio/MeridioConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/meridio/MeridioConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/meridio/MeridioConnector.java Thu Aug 15 16:29:57 2019
@@ -590,7 +590,7 @@ public class MeridioConnector extends or
   *@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.
   */
@@ -1504,7 +1504,7 @@ public class MeridioConnector extends or
   
   /** 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.
@@ -1966,7 +1966,7 @@ public class MeridioConnector extends or
   
   /** 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.
@@ -2166,7 +2166,7 @@ public class MeridioConnector extends or
   * 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.
@@ -3203,7 +3203,7 @@ public class MeridioConnector extends or
   /** 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/connectors/mongodb/connector/src/main/java/org/apache/manifoldcf/agents/output/mongodboutput/MongodbOutputConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/mongodb/connector/src/main/java/org/apache/manifoldcf/agents/output/mongodboutput/MongodbOutputConnector.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/mongodb/connector/src/main/java/org/apache/manifoldcf/agents/output/mongodboutput/MongodbOutputConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/mongodb/connector/src/main/java/org/apache/manifoldcf/agents/output/mongodboutput/MongodbOutputConnector.java Thu Aug 15 16:29:57 2019
@@ -286,7 +286,7 @@ public class MongodbOutputConnector exte
      * 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.
+     * &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.

Modified: manifoldcf/branches/CONNECTORS-1618/connectors/nullauthority/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/nullauthority/NullAuthority.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1618/connectors/nullauthority/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/nullauthority/NullAuthority.java?rev=1865236&r1=1865235&r2=1865236&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1618/connectors/nullauthority/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/nullauthority/NullAuthority.java (original)
+++ manifoldcf/branches/CONNECTORS-1618/connectors/nullauthority/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/nullauthority/NullAuthority.java Thu Aug 15 16:29:57 2019
@@ -121,7 +121,7 @@ public class NullAuthority extends org.a
   
   /** 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.
@@ -155,7 +155,7 @@ public class NullAuthority extends org.a
   
   /** 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 parameters are the configuration parameters, as they currently exist, for this connection being configured.