Author: markt Date: Tue Oct 6 09:42:26 2015 New Revision: 1706969 URL: http://svn.apache.org/viewvc?rev=1706969&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=1706969&r1=1706968&r2=1706969&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/ProtocolHandler.java (original) +++ tomcat/trunk/java/org/apache/coyote/ProtocolHandler.java Tue Oct 6 09:42:26 2015 @@ -62,42 +62,58 @@ public interface ProtocolHandler { /** * Start the protocol. + * + * @throws Exception If the protocol handler fails to start */ public void start() throws Exception; /** * Pause the protocol (optional). + * + * @throws Exception If the protocol handler fails to pause */ public void pause() throws Exception; /** * Resume the protocol (optional). + * + * @throws Exception If the protocol handler fails to resume */ public void resume() throws Exception; /** * Stop the protocol. + * + * @throws Exception If the protocol handler fails to stop */ public void stop() throws Exception; /** * Destroy the protocol (optional). + * + * @throws Exception If the protocol handler fails to destroy */ public void destroy() throws Exception; /** * Requires APR/native library + * + * @return <code>true</code> if this Protocol Handler requires the + * APR/native library, otherwise <code>false</code> */ public boolean isAprRequired(); /** * Does this ProtocolHandler support sendfile? + * + * @return <code>true</code> if this Protocol Handler supports sendfile, + * otherwise <code>false</code> */ public boolean isSendfileSupported(); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org