Fixing other javadoc violations/errors
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2839 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
0756914b2f
commit
736131230f
|
@ -118,7 +118,7 @@ public class AliasedX509ExtendedKeyManager extends X509ExtendedKeyManager
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see javax.net.ssl.X509ExtendedKeyManager#chooseEngineClientAlias(java.lang.String, java.security.Principal[], javax.net.ssl.SSLEngine)
|
||||
* @see javax.net.ssl.X509ExtendedKeyManager#chooseEngineClientAlias(String[], Principal[], SSLEngine)
|
||||
*/
|
||||
@Override
|
||||
public String chooseEngineClientAlias(String keyType[], Principal[] issuers, SSLEngine engine)
|
||||
|
|
|
@ -322,8 +322,8 @@ public class SslContextFactory extends AbstractLifeCycle
|
|||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/** Set the _keyStoreInputStream.
|
||||
* @param _keyStoreInputStream the _keyStoreInputStream to set
|
||||
/** Set the keyStoreInputStream.
|
||||
* @param keystoreInputStream the InputStream to the KeyStore
|
||||
*/
|
||||
public void setKeyStoreInputStream(InputStream keystoreInputStream)
|
||||
{
|
||||
|
@ -429,7 +429,7 @@ public class SslContextFactory extends AbstractLifeCycle
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/** Set the _trustStoreInputStream.
|
||||
* @param _trustStoreInputStream the _trustStoreInputStream to set
|
||||
* @param truststoreInputStream the InputStream to the TrustStore
|
||||
*/
|
||||
public void setTrustStoreInputStream(InputStream truststoreInputStream)
|
||||
{
|
||||
|
@ -495,8 +495,8 @@ public class SslContextFactory extends AbstractLifeCycle
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @param validateServerCert
|
||||
* true if SSL certificate has to be validated
|
||||
* @param validateCerts
|
||||
* true if SSL certificates have to be validated
|
||||
*/
|
||||
public void setValidateCerts(boolean validateCerts)
|
||||
{
|
||||
|
|
|
@ -93,7 +93,7 @@ public abstract class PolicyMonitor extends AbstractLifeCycle
|
|||
/**
|
||||
* gets the scanner interval
|
||||
*
|
||||
* @return
|
||||
* @return the scan interval
|
||||
*/
|
||||
public int getScanInterval()
|
||||
{
|
||||
|
@ -103,7 +103,8 @@ public abstract class PolicyMonitor extends AbstractLifeCycle
|
|||
/**
|
||||
* sets the scanner interval on a non-running instance of the monitor
|
||||
*
|
||||
* @param scanInterval
|
||||
* @param scanInterval in seconds
|
||||
* @see Scanner#setScanInterval(int)
|
||||
*/
|
||||
public void setScanInterval( int scanInterval )
|
||||
{
|
||||
|
@ -119,7 +120,7 @@ public abstract class PolicyMonitor extends AbstractLifeCycle
|
|||
* true of the monitor is initialized, meaning that at least one
|
||||
* scan cycle has completed and any policy grants found have been chirped
|
||||
*
|
||||
* @return
|
||||
* @return true if initialized
|
||||
*/
|
||||
public boolean isInitialized()
|
||||
{
|
||||
|
@ -129,7 +130,7 @@ public abstract class PolicyMonitor extends AbstractLifeCycle
|
|||
/**
|
||||
* gets the number of times the scan has been run
|
||||
*
|
||||
* @return
|
||||
* @return scan count
|
||||
*/
|
||||
public int getScanCount()
|
||||
{
|
||||
|
@ -153,7 +154,7 @@ public abstract class PolicyMonitor extends AbstractLifeCycle
|
|||
/**
|
||||
* true of reload is enabled, false otherwise
|
||||
*
|
||||
* @return
|
||||
* @return true if reload is enabled
|
||||
*/
|
||||
public boolean isReloadEnabled()
|
||||
{
|
||||
|
|
|
@ -328,7 +328,7 @@ public class SslSocketConnector extends SocketConnector implements SslConnector
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.server.nio.SelectChannelConnector#doStart()
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
protected void doStart() throws Exception
|
||||
|
|
|
@ -220,7 +220,7 @@ public class WebSocketConnectionD00 extends AbstractConnection implements WebSoc
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendMessage(java.lang.String)
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public void sendMessage(String content) throws IOException
|
||||
{
|
||||
|
@ -229,7 +229,7 @@ public class WebSocketConnectionD00 extends AbstractConnection implements WebSoc
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendMessage(byte, java.lang.String)
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public void sendMessage(byte frame, String content) throws IOException
|
||||
{
|
||||
|
@ -241,7 +241,7 @@ public class WebSocketConnectionD00 extends AbstractConnection implements WebSoc
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendMessage(byte, byte[], int, int)
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public void sendMessage(byte opcode, byte[] content, int offset, int length) throws IOException
|
||||
{
|
||||
|
@ -253,7 +253,7 @@ public class WebSocketConnectionD00 extends AbstractConnection implements WebSoc
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.websocket.WebSocketConnection#sendFragment(boolean, byte, byte[], int, int)
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public void sendFragment(boolean more,byte opcode, byte[] content, int offset, int length) throws IOException
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue