Javadoc error cleanup.
+ Removing missing class references + Fixing empty @return statements + Delinking invalid direction class references + Correcting @param <name> typos git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3219 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
c70f2d5c68
commit
26d59fda32
|
@ -168,7 +168,8 @@ public class ClientCertAuthenticator extends LoginAuthenticator
|
|||
* load CRL in order to provide their own implementation.
|
||||
*
|
||||
* @param crlPath path of certificate revocation list file
|
||||
* @return
|
||||
* @return a (possibly empty) collection view of java.security.cert.CRL objects initialized with the data from the
|
||||
* input stream.
|
||||
* @throws Exception
|
||||
*/
|
||||
protected Collection<? extends CRL> loadCRL(String crlPath) throws Exception
|
||||
|
|
|
@ -578,7 +578,7 @@ public class SslSelectChannelConnector extends SelectChannelConnector implements
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @param channel, A channel which if passed is used as to extract remote
|
||||
* @param channel A channel which if passed is used as to extract remote
|
||||
* host and port for the purposes of SSL session caching
|
||||
* @return A SSLEngine for a new or cached SSL Session
|
||||
* @throws IOException
|
||||
|
|
|
@ -69,7 +69,7 @@ import org.eclipse.jetty.util.log.Log;
|
|||
* <P>
|
||||
* This handler does not implement the full J2EE features and is intended to
|
||||
* be used directly when a full web application is not required. If a Web application is required,
|
||||
* then this handler should be used as part of a {@link org.eclipse.jetty.webapp.WebAppContext}.
|
||||
* then this handler should be used as part of a <code>org.eclipse.jetty.webapp.WebAppContext</code>.
|
||||
* <p>
|
||||
* Unless run as part of a {@link ServletContextHandler} or derivative, the {@link #initialize()}
|
||||
* method must be called manually after start().
|
||||
|
|
|
@ -319,9 +319,6 @@ public class WebSocketConnectionD06 extends AbstractConnection implements WebSoc
|
|||
int _maxBinaryMessage=WebSocketConnectionD06.this._maxBinaryMessageSize;
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendMessage(byte, java.lang.String)
|
||||
*/
|
||||
public synchronized void sendMessage(String content) throws IOException
|
||||
{
|
||||
if (_closedOut)
|
||||
|
@ -334,9 +331,6 @@ public class WebSocketConnectionD06 extends AbstractConnection implements WebSoc
|
|||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendMessage(byte, byte[], int, int)
|
||||
*/
|
||||
public synchronized void sendMessage(byte[] content, int offset, int length) throws IOException
|
||||
{
|
||||
if (_closedOut)
|
||||
|
@ -348,9 +342,6 @@ public class WebSocketConnectionD06 extends AbstractConnection implements WebSoc
|
|||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendFrame(boolean, byte, byte[], int, int)
|
||||
*/
|
||||
public void sendFrame(byte flags,byte opcode, byte[] content, int offset, int length) throws IOException
|
||||
{
|
||||
if (_closedOut)
|
||||
|
|
|
@ -357,9 +357,6 @@ public class WebSocketConnectionD07 extends AbstractConnection implements WebSoc
|
|||
int _maxBinaryMessage=WebSocketConnectionD07.this._maxBinaryMessageSize;
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendMessage(byte, java.lang.String)
|
||||
*/
|
||||
public synchronized void sendMessage(String content) throws IOException
|
||||
{
|
||||
if (_closedOut)
|
||||
|
@ -371,9 +368,6 @@ public class WebSocketConnectionD07 extends AbstractConnection implements WebSoc
|
|||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendMessage(byte, byte[], int, int)
|
||||
*/
|
||||
public synchronized void sendMessage(byte[] content, int offset, int length) throws IOException
|
||||
{
|
||||
if (_closedOut)
|
||||
|
@ -384,9 +378,6 @@ public class WebSocketConnectionD07 extends AbstractConnection implements WebSoc
|
|||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendFrame(boolean, byte, byte[], int, int)
|
||||
*/
|
||||
public void sendFrame(byte flags,byte opcode, byte[] content, int offset, int length) throws IOException
|
||||
{
|
||||
if (_closedOut)
|
||||
|
|
|
@ -21,7 +21,7 @@ import java.util.Map;
|
|||
* <p>
|
||||
* A file in non-XmlConfiguration file format may be processed by a {@link ConfigurationProcessor}
|
||||
* instance that is returned from a {@link ConfigurationProcessorFactory} instance discovered by the
|
||||
* {@link ServiceLoader} mechanism. This is used to allow spring configuration files to be used instead of
|
||||
* <code>ServiceLoader</code> mechanism. This is used to allow spring configuration files to be used instead of
|
||||
* jetty.xml
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -55,7 +55,7 @@ import org.xml.sax.SAXException;
|
|||
*
|
||||
* <p>
|
||||
* The actual XML file format may be changed (eg to spring XML) by implementing the {@link ConfigurationProcessorFactory} interfaces to be found by the
|
||||
* {@link ServiceLoader} by using the DTD and first tag element in the file. Note that DTD will be null if validation is off.
|
||||
* <code>ServiceLoader</code> by using the DTD and first tag element in the file. Note that DTD will be null if validation is off.
|
||||
*
|
||||
*/
|
||||
public class XmlConfiguration
|
||||
|
|
Loading…
Reference in New Issue