Marked some classes as final in the http tunneling socket transport
This commit is contained in:
parent
3d7214ba61
commit
b56bdd89dd
@ -34,7 +34,8 @@ import org.jboss.netty.channel.ChannelFuture;
|
||||
* @author Andy Taylor (andy.taylor@jboss.org)
|
||||
* @version $Rev$, $Date$
|
||||
*/
|
||||
class HttpTunnelWorker implements Runnable {
|
||||
final class HttpTunnelWorker implements Runnable {
|
||||
|
||||
private final HttpTunnelingClientSocketChannel channel;
|
||||
|
||||
HttpTunnelWorker(HttpTunnelingClientSocketChannel channel) {
|
||||
|
@ -42,7 +42,7 @@ import org.jboss.netty.util.ThreadRenamingRunnable;
|
||||
* @author Andy Taylor (andy.taylor@jboss.org)
|
||||
* @version $Rev$, $Date$
|
||||
*/
|
||||
class HttpTunnelingClientSocketPipelineSink extends AbstractChannelSink {
|
||||
final class HttpTunnelingClientSocketPipelineSink extends AbstractChannelSink {
|
||||
|
||||
static String LINE_TERMINATOR = "\r\n";
|
||||
private final Executor workerExecutor;
|
||||
|
@ -35,7 +35,7 @@ import org.jboss.netty.util.ConversionUtil;
|
||||
* @author Andy Taylor (andy.taylor@jboss.org)
|
||||
* @version $Rev$, $Date$
|
||||
*/
|
||||
class HttpTunnelingSocketChannelConfig extends DefaultChannelConfig
|
||||
final class HttpTunnelingSocketChannelConfig extends DefaultChannelConfig
|
||||
implements SocketChannelConfig {
|
||||
|
||||
final Socket socket;
|
||||
|
Loading…
Reference in New Issue
Block a user