Modified: manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/output/BaseOutputConnector.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/output/BaseOutputConnector.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/output/BaseOutputConnector.java (original) +++ manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/output/BaseOutputConnector.java Mon Aug 26 20:27:25 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 <html>, <body>, and <form> 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 <html> and <body> 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/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnection/OutputConnectionManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnection/OutputConnectionManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnection/OutputConnectionManager.java (original) +++ manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnection/OutputConnectionManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>connectionname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnmgr/OutputConnectorManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnmgr/OutputConnectorManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnmgr/OutputConnectorManager.java (original) +++ manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/outputconnmgr/OutputConnectorManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr> Modified: manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformation/BaseTransformationConnector.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformation/BaseTransformationConnector.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformation/BaseTransformationConnector.java (original) +++ manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformation/BaseTransformationConnector.java Mon Aug 26 20:27:25 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 <html>, <body>, and <form> 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 <html> and <body> 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/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnection/TransformationConnectionManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnection/TransformationConnectionManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnection/TransformationConnectionManager.java (original) +++ manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnection/TransformationConnectionManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>connectionname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnmgr/TransformationConnectorManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnmgr/TransformationConnectorManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnmgr/TransformationConnectorManager.java (original) +++ manifoldcf/trunk/framework/agents/src/main/java/org/apache/manifoldcf/agents/transformationconnmgr/TransformationConnectorManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr> Modified: manifoldcf/trunk/framework/authority-servlet/src/main/java/org/apache/manifoldcf/authorityservlet/UserACLServlet.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/authority-servlet/src/main/java/org/apache/manifoldcf/authorityservlet/UserACLServlet.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/authority-servlet/src/main/java/org/apache/manifoldcf/authorityservlet/UserACLServlet.java (original) +++ manifoldcf/trunk/framework/authority-servlet/src/main/java/org/apache/manifoldcf/authorityservlet/UserACLServlet.java Mon Aug 26 20:27:25 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/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/HTMLParseState.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/HTMLParseState.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/HTMLParseState.java (original) +++ manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/HTMLParseState.java Mon Aug 26 20:27:25 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 <? ... ?> 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 <! <token> ... > 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 '>' 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. <![ <token> [ ... ]]> *@param token may be empty!!! *@return true to halt further processing. */ Modified: manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/SingleCharacterReceiver.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/SingleCharacterReceiver.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/SingleCharacterReceiver.java (original) +++ manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/SingleCharacterReceiver.java Mon Aug 26 20:27:25 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/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/TagParseState.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/TagParseState.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/TagParseState.java (original) +++ manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/TagParseState.java Mon Aug 26 20:27:25 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> +* '<' <token> <attrs> '>' ... '</' <token> '>' +* '<' <token> <attrs> '/>' +* '<?' <token> <attrs> '?>' +* '<![' [<token>] '[' ... ']]>' +* '<!' <token> ... '>' +* '<!--' ... '-->' +* </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 <! ... > 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 > 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 <? ... ?> 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 <! <token> ... > 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 '>' 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. <![ <token> [ ... ]]> *@param token may be empty!!! *@return true to halt further processing. */ Modified: manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLEncodingDetector.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLEncodingDetector.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLEncodingDetector.java (original) +++ manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLEncodingDetector.java Mon Aug 26 20:27:25 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 <?xml ... ?> 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 <! <token> ... > 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 '>' 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. <![ <token> [ ... ]]> *@param token may be empty!!! *@return true to halt further processing. */ Modified: manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLFuzzyParseState.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLFuzzyParseState.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLFuzzyParseState.java (original) +++ manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLFuzzyParseState.java Mon Aug 26 20:27:25 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 <? ... ?> 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 <! <token> ... > 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. <![ <token> [ ... ]]> *@param token may be empty!!! *@return true to halt further processing. */ Modified: manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLParseState.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLParseState.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLParseState.java (original) +++ manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/fuzzyml/XMLParseState.java Mon Aug 26 20:27:25 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 <? ... ?> construct, or 'qtag'. * Override it to intercept such constructs. *@return true to halt further processing. */ Modified: manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/throttler/Throttler.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/throttler/Throttler.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/throttler/Throttler.java (original) +++ manifoldcf/trunk/framework/connector-common/src/main/java/org/apache/manifoldcf/connectorcommon/throttler/Throttler.java Mon Aug 26 20:27:25 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/DBCreate.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/DBCreate.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/DBCreate.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/DBCreate.java Mon Aug 26 20:27:25 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/DBDrop.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/DBDrop.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/DBDrop.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/DBDrop.java Mon Aug 26 20:27:25 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/auth/LdapAuthenticator.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/auth/LdapAuthenticator.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/auth/LdapAuthenticator.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/auth/LdapAuthenticator.java Mon Aug 26 20:27:25 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/connector/BaseConnector.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/connector/BaseConnector.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/connector/BaseConnector.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/connector/BaseConnector.java Mon Aug 26 20:27:25 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 <html>, <body>, and <form> 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 <html>, <body>, and <form> 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 <html> and <body> 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 <html> and <body> 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/BaseTable.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/BaseTable.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/BaseTable.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/database/BaseTable.java Mon Aug 26 20:27:25 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 & 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/IConnector.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/IConnector.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/IConnector.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/IConnector.java Mon Aug 26 20:27:25 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 <html>, <body>, and <form> 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 <html> and <body> 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/ILockManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/ILockManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/ILockManager.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/ILockManager.java Mon Aug 26 20:27:25 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/BaseLockManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/BaseLockManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/BaseLockManager.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/BaseLockManager.java Mon Aug 26 20:27:25 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockGate.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockGate.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockGate.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockGate.java Mon Aug 26 20:27:25 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> +* <wait_for_permission> * try { * ... obtain the lock ... * } finally { -* <release_permission> +* <release_permission> * } +* </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 <0x00000000fe205720> (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 <0x00000000f8b71c78> (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 <0x00000000f8b71c78> (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 <0x00000000ffbdc038> (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 <0x00000000ffbdc038> (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 <0x00000000ffbdd2f8> (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 <0x00000000ffbdd2f8> (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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockManager.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/LockManager.java Mon Aug 26 20:27:25 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/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/ZooKeeperLockManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/ZooKeeperLockManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/ZooKeeperLockManager.java (original) +++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/lockmanager/ZooKeeperLockManager.java Mon Aug 26 20:27:25 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/trunk/framework/core/src/test/java/org/apache/manifoldcf/core/tests/SeleniumTester.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/test/java/org/apache/manifoldcf/core/tests/SeleniumTester.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/src/test/java/org/apache/manifoldcf/core/tests/SeleniumTester.java (original) +++ manifoldcf/trunk/framework/core/src/test/java/org/apache/manifoldcf/core/tests/SeleniumTester.java Mon Aug 26 20:27:25 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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authconnmgr/AuthorityConnectorManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authconnmgr/AuthorityConnectorManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authconnmgr/AuthorityConnectorManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authconnmgr/AuthorityConnectorManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authdomains/AuthorizationDomainManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authdomains/AuthorizationDomainManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authdomains/AuthorizationDomainManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authdomains/AuthorizationDomainManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authgroups/AuthorityGroupManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authgroups/AuthorityGroupManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authgroups/AuthorityGroupManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authgroups/AuthorityGroupManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>groupname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authority/AuthorityConnectionManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authority/AuthorityConnectionManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authority/AuthorityConnectionManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/authority/AuthorityConnectionManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>authorityname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/interfaces/IAuthorityConnectorPool.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/interfaces/IAuthorityConnectorPool.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/interfaces/IAuthorityConnectorPool.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/interfaces/IAuthorityConnectorPool.java Mon Aug 26 20:27:25 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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapconnmgr/MappingConnectorManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapconnmgr/MappingConnectorManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapconnmgr/MappingConnectorManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapconnmgr/MappingConnectorManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapping/MappingConnectionManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapping/MappingConnectionManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapping/MappingConnectionManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/authorities/mapping/MappingConnectionManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>mappingname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/bins/BinManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/bins/BinManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/bins/BinManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/bins/BinManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>binname</td><td>VARCHAR(255)</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java Mon Aug 26 20:27:25 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". + * <html>, <body>, and <form> 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 <html> and <body>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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connmgr/ConnectorManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connmgr/ConnectorManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connmgr/ConnectorManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connmgr/ConnectorManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>description</td><td>VARCHAR(255)</td><td></td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnector.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnector.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnector.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnector.java Mon Aug 26 20:27:25 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". + * <html>, <body>, and <form> 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 <html> and <body>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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnectorPool.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnectorPool.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnectorPool.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/INotificationConnectorPool.java Mon Aug 26 20:27:25 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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.java Mon Aug 26 20:27:25 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". + * <html>, <body>, and <form> 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 <html> and <body>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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnectorPool.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnectorPool.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnectorPool.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IRepositoryConnectorPool.java Mon Aug 26 20:27:25 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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IReprioritizationTracker.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IReprioritizationTracker.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IReprioritizationTracker.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/IReprioritizationTracker.java Mon Aug 26 20:27:25 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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Carrydown.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Carrydown.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Carrydown.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Carrydown.java Mon Aug 26 20:27:25 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 </th> * <tr><td>jobid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java Mon Aug 26 20:27:25 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 </th> * <tr><td>name</td><td>VARCHAR(255)</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopCount.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopCount.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopCount.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopCount.java Mon Aug 26 20:27:25 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 </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 ">(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/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopDeleteDeps.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopDeleteDeps.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopDeleteDeps.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopDeleteDeps.java Mon Aug 26 20:27:25 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 </th> * <tr><td>jobid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopFilterManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopFilterManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopFilterManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/HopFilterManager.java Mon Aug 26 20:27:25 2019 @@ -28,7 +28,7 @@ import java.util.*; * * <br><br> * <b>jobhopfilters</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 </th> * <tr><td>ownerid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/IntrinsicLink.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/IntrinsicLink.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/IntrinsicLink.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/IntrinsicLink.java Mon Aug 26 20:27:25 2019 @@ -29,7 +29,7 @@ import org.apache.manifoldcf.crawler.sys * * <br><br> * <b>intrinsiclink</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 </th> * <tr><td>jobid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobManager.java Mon Aug 26 20:27:25 2019 @@ -5186,7 +5186,6 @@ public class JobManager implements IJobM *@param dataNames are the names of the data to carry down to the child from this parent. *@param dataValues are the values to carry down to the child from this parent, corresponding to dataNames above. If CharacterInput objects are passed in here, * it is the caller's responsibility to clean these up. - *@param currentTime is the time in milliseconds since epoch that will be recorded for this operation. *@param documentPriorities are the desired document priorities for the documents. *@param prereqEventNames are the events that must be completed before a document can be queued. */ Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java Mon Aug 26 20:27:25 2019 @@ -28,7 +28,7 @@ import java.util.*; * * <br><br> * <b>jobqueue</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 </th> * <tr><td>id</td><td>BIGINT</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Jobs.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Jobs.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Jobs.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/Jobs.java Mon Aug 26 20:27:25 2019 @@ -29,7 +29,7 @@ import java.util.*; * * <br><br> * <b>jobs</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 </th> * <tr><td>id</td><td>BIGINT</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/NotificationManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/NotificationManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/NotificationManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/NotificationManager.java Mon Aug 26 20:27:25 2019 @@ -28,7 +28,7 @@ import java.util.*; * * <br><br> * <b>jobnotifications</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 </th> * <tr><td>ownerid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/PipelineManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/PipelineManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/PipelineManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/PipelineManager.java Mon Aug 26 20:27:25 2019 @@ -28,7 +28,7 @@ import java.util.*; * * <br><br> * <b>jobpipelines</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 </th> * <tr><td>ownerid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/PrereqEventManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/PrereqEventManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/PrereqEventManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/PrereqEventManager.java Mon Aug 26 20:27:25 2019 @@ -29,7 +29,7 @@ import java.util.*; * * <br><br> * <b>prereqevents</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 </th> * <tr><td>owner</td><td>BIGINT</td><td>Reference:jobqueue.id</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/ScheduleManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/ScheduleManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/ScheduleManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/ScheduleManager.java Mon Aug 26 20:27:25 2019 @@ -28,7 +28,7 @@ import java.util.*; * * <br><br> * <b>schedules</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 </th> * <tr><td>ownerid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/notification/NotificationConnectionManager.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/notification/NotificationConnectionManager.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/notification/NotificationConnectionManager.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/notification/NotificationConnectionManager.java Mon Aug 26 20:27:25 2019 @@ -33,7 +33,7 @@ import org.apache.manifoldcf.crawler.sys * * <br><br> * <b>notificationconnections</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 </th> * <tr><td>connectionname</td><td>VARCHAR(32)</td><td>Primary Key</td></tr> Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/notificationconnectorpool/NotificationConnectorPool.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/notificationconnectorpool/NotificationConnectorPool.java?rev=1865954&r1=1865953&r2=1865954&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/notificationconnectorpool/NotificationConnectorPool.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/notificationconnectorpool/NotificationConnectorPool.java Mon Aug 26 20:27:25 2019 @@ -21,9 +21,6 @@ package org.apache.manifoldcf.crawler.no import org.apache.manifoldcf.core.interfaces.*; import org.apache.manifoldcf.crawler.interfaces.*; -import java.util.*; -import java.io.*; - /** An implementation of INotificationConnectorPool. * Coordination and allocation among cluster members is managed within. * These objects are thread-local, so do not share them among threads. @@ -77,7 +74,7 @@ public class NotificationConnectorPool i /** Get a notification connector. * The connector is specified by a notification connection object. - *@param authorityConnection is the notification connection to base the connector instance on. + *@param notificationConnection is the notification connection to base the connector instance on. */ @Override public INotificationConnector grab(INotificationConnection notificationConnection)
