Author: markt Date: Tue Oct 6 09:06:12 2015 New Revision: 1706967 URL: http://svn.apache.org/viewvc?rev=1706967&view=rev Log: Trivial Javadoc commit to test the CI system
Modified: tomcat/trunk/java/org/apache/coyote/ProtocolHandler.java Modified: tomcat/trunk/java/org/apache/coyote/ProtocolHandler.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/ProtocolHandler.java?rev=1706967&r1=1706966&r2=1706967&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/ProtocolHandler.java (original) +++ tomcat/trunk/java/org/apache/coyote/ProtocolHandler.java Tue Oct 6 09:06:12 2015 @@ -14,14 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.apache.coyote; import java.util.concurrent.Executor; import org.apache.tomcat.util.net.SSLHostConfig; - /** * Abstract the protocol implementation, including threading, etc. * Processor is single threaded and specific to stream-based protocols, @@ -48,12 +46,16 @@ public interface ProtocolHandler { /** * The executor, provide access to the underlying thread pool. + * + * @return The executor used to process requests */ public Executor getExecutor(); /** * Initialise the protocol. + * + * @throws Exception If the protocol handler fails to initialise */ public void init() throws Exception; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org