Fixed javadoc errors
This commit is contained in:
parent
3244088565
commit
830b126e43
|
@ -210,7 +210,7 @@ public class HttpConfiguration
|
|||
* to the total operation (as opposed to the idle timeout that applies to the time no
|
||||
* data is being sent).
|
||||
* @return -1, for no blocking timeout (default), 0 for a blocking timeout equal to the
|
||||
* idle timeout; >0 for a timeout in ms applied to the total blocking operation.
|
||||
* idle timeout; >0 for a timeout in ms applied to the total blocking operation.
|
||||
*/
|
||||
@ManagedAttribute("Timeout in MS for blocking operations.")
|
||||
public long getBlockingTimeout()
|
||||
|
@ -224,7 +224,7 @@ public class HttpConfiguration
|
|||
* to the total operation (as opposed to the idle timeout that applies to the time no
|
||||
* data is being sent).
|
||||
* @param blockingTimeout -1, for no blocking timeout (default), 0 for a blocking timeout equal to the
|
||||
* idle timeout; >0 for a timeout in ms applied to the total blocking operation.
|
||||
* idle timeout; >0 for a timeout in ms applied to the total blocking operation.
|
||||
*/
|
||||
public void setBlockingTimeout(long blockingTimeout)
|
||||
{
|
||||
|
|
|
@ -44,13 +44,13 @@ import org.eclipse.jetty.util.URIUtil;
|
|||
* relative to the context root. So these script tags:</p>
|
||||
* <pre>
|
||||
* <script type="text/javascript" src="../js/behaviour.js"></script>
|
||||
* <script type="text/javascript" src="../js/ajax.js&/chat/chat.js"></script>
|
||||
* <script type="text/javascript" src="../js/ajax.js"></script>
|
||||
* <script type="text/javascript" src="../chat/chat.js"></script>
|
||||
* </pre>
|
||||
* <p>can be replaced with the single tag (with the {@code ConcatServlet}
|
||||
* mapped to {@code /concat}):</p>
|
||||
* <pre>
|
||||
* <script type="text/javascript" src="../concat?/js/behaviour.js&/js/ajax.js&/chat/chat.js"></script>
|
||||
* <script type="text/javascript" src="../concat?/js/behaviour.js&/js/ajax.js&/chat/chat.js"></script>
|
||||
* </pre>
|
||||
* <p>The {@link ServletContext#getMimeType(String)} method is used to determine the
|
||||
* mime type of each resource. If the types of all resources do not match, then a 415
|
||||
|
|
Loading…
Reference in New Issue