From 9f41a5a1f8d62c3810eb7266948b0273c838ef84 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Fri, 9 Dec 2011 14:18:34 +0900 Subject: [PATCH] Update license header / Remove JBoss style --- .fbfilter.xml | 15 ++ pom.xml | 31 ++- src/assembly/default.xml | 28 +-- src/javadoc/overview.html | 28 +-- src/javadoc/resources/bkg_blkheader.png | Bin 2834 -> 0 bytes src/javadoc/resources/bkg_gradient.gif | Bin 294 -> 0 bytes src/javadoc/resources/bkgheader.png | Bin 2849 -> 0 bytes src/javadoc/resources/h1_hdr.png | Bin 10312 -> 0 bytes src/javadoc/stylesheet.css | 121 ----------- .../java/io/netty/bootstrap/Bootstrap.java | 12 +- .../io/netty/bootstrap/ClientBootstrap.java | 12 +- .../bootstrap/ConnectionlessBootstrap.java | 12 +- .../io/netty/bootstrap/ServerBootstrap.java | 12 +- .../java/io/netty/bootstrap/package-info.java | 12 +- .../netty/buffer/AbstractChannelBuffer.java | 12 +- .../buffer/AbstractChannelBufferFactory.java | 12 +- .../buffer/BigEndianHeapChannelBuffer.java | 12 +- .../buffer/ByteBufferBackedChannelBuffer.java | 12 +- .../java/io/netty/buffer/ChannelBuffer.java | 12 +- .../io/netty/buffer/ChannelBufferFactory.java | 12 +- .../buffer/ChannelBufferIndexFinder.java | 12 +- .../buffer/ChannelBufferInputStream.java | 12 +- .../buffer/ChannelBufferOutputStream.java | 12 +- .../java/io/netty/buffer/ChannelBuffers.java | 12 +- .../netty/buffer/CompositeChannelBuffer.java | 12 +- .../buffer/DirectChannelBufferFactory.java | 12 +- .../netty/buffer/DuplicatedChannelBuffer.java | 12 +- .../io/netty/buffer/DynamicChannelBuffer.java | 12 +- .../io/netty/buffer/HeapChannelBuffer.java | 12 +- .../buffer/HeapChannelBufferFactory.java | 12 +- .../buffer/LittleEndianHeapChannelBuffer.java | 12 +- .../netty/buffer/ReadOnlyChannelBuffer.java | 12 +- .../io/netty/buffer/SlicedChannelBuffer.java | 12 +- .../netty/buffer/TruncatedChannelBuffer.java | 12 +- .../io/netty/buffer/WrappedChannelBuffer.java | 12 +- .../java/io/netty/buffer/package-info.java | 12 +- .../io/netty/channel/AbstractChannel.java | 12 +- .../io/netty/channel/AbstractChannelSink.java | 12 +- .../netty/channel/AbstractServerChannel.java | 12 +- .../AdaptiveReceiveBufferSizePredictor.java | 12 +- ...tiveReceiveBufferSizePredictorFactory.java | 12 +- src/main/java/io/netty/channel/Channel.java | 12 +- .../java/io/netty/channel/ChannelConfig.java | 12 +- .../channel/ChannelDownstreamHandler.java | 12 +- .../java/io/netty/channel/ChannelEvent.java | 12 +- .../io/netty/channel/ChannelException.java | 12 +- .../java/io/netty/channel/ChannelFactory.java | 12 +- .../java/io/netty/channel/ChannelFuture.java | 12 +- .../channel/ChannelFutureAggregator.java | 12 +- .../netty/channel/ChannelFutureListener.java | 12 +- .../ChannelFutureProgressListener.java | 12 +- .../java/io/netty/channel/ChannelHandler.java | 12 +- .../netty/channel/ChannelHandlerContext.java | 12 +- .../ChannelHandlerLifeCycleException.java | 12 +- .../java/io/netty/channel/ChannelLocal.java | 12 +- .../io/netty/channel/ChannelPipeline.java | 12 +- .../channel/ChannelPipelineException.java | 12 +- .../netty/channel/ChannelPipelineFactory.java | 12 +- .../java/io/netty/channel/ChannelSink.java | 12 +- .../java/io/netty/channel/ChannelState.java | 12 +- .../io/netty/channel/ChannelStateEvent.java | 12 +- .../netty/channel/ChannelUpstreamHandler.java | 12 +- src/main/java/io/netty/channel/Channels.java | 12 +- .../netty/channel/ChildChannelStateEvent.java | 12 +- .../netty/channel/CompleteChannelFuture.java | 12 +- .../netty/channel/DefaultChannelConfig.java | 12 +- .../netty/channel/DefaultChannelFuture.java | 12 +- .../netty/channel/DefaultChannelPipeline.java | 12 +- .../DefaultChildChannelStateEvent.java | 12 +- .../netty/channel/DefaultExceptionEvent.java | 12 +- .../io/netty/channel/DefaultFileRegion.java | 15 ++ .../channel/DefaultServerChannelConfig.java | 12 +- .../channel/DefaultWriteCompletionEvent.java | 12 +- .../channel/DownstreamChannelStateEvent.java | 12 +- .../netty/channel/DownstreamMessageEvent.java | 12 +- .../java/io/netty/channel/ExceptionEvent.java | 12 +- .../io/netty/channel/FailedChannelFuture.java | 12 +- .../java/io/netty/channel/FileRegion.java | 12 +- .../FixedReceiveBufferSizePredictor.java | 12 +- ...ixedReceiveBufferSizePredictorFactory.java | 12 +- .../channel/LifeCycleAwareChannelHandler.java | 12 +- .../java/io/netty/channel/MessageEvent.java | 12 +- .../channel/ReceiveBufferSizePredictor.java | 12 +- .../ReceiveBufferSizePredictorFactory.java | 12 +- .../java/io/netty/channel/ServerChannel.java | 12 +- .../netty/channel/ServerChannelFactory.java | 12 +- .../SimpleChannelDownstreamHandler.java | 12 +- .../netty/channel/SimpleChannelHandler.java | 12 +- .../channel/SimpleChannelUpstreamHandler.java | 12 +- .../netty/channel/StaticChannelPipeline.java | 12 +- .../netty/channel/SucceededChannelFuture.java | 12 +- .../channel/UpstreamChannelStateEvent.java | 12 +- .../netty/channel/UpstreamMessageEvent.java | 12 +- .../netty/channel/WriteCompletionEvent.java | 12 +- .../io/netty/channel/group/ChannelGroup.java | 12 +- .../channel/group/ChannelGroupFuture.java | 12 +- .../group/ChannelGroupFutureListener.java | 12 +- .../netty/channel/group/CombinedIterator.java | 12 +- .../channel/group/DefaultChannelGroup.java | 12 +- .../group/DefaultChannelGroupFuture.java | 12 +- .../io/netty/channel/group/package-info.java | 12 +- .../channel/iostream/IOStreamAddress.java | 12 +- .../channel/iostream/IOStreamChannel.java | 12 +- .../iostream/IOStreamChannelFactory.java | 12 +- .../channel/iostream/IOStreamChannelSink.java | 12 +- .../channel/local/DefaultLocalChannel.java | 12 +- .../DefaultLocalClientChannelFactory.java | 12 +- .../local/DefaultLocalServerChannel.java | 12 +- .../DefaultLocalServerChannelFactory.java | 12 +- .../io/netty/channel/local/LocalAddress.java | 12 +- .../io/netty/channel/local/LocalChannel.java | 12 +- .../channel/local/LocalChannelRegistry.java | 12 +- .../local/LocalClientChannelFactory.java | 12 +- .../channel/local/LocalClientChannelSink.java | 12 +- .../channel/local/LocalServerChannel.java | 12 +- .../local/LocalServerChannelFactory.java | 12 +- .../channel/local/LocalServerChannelSink.java | 12 +- .../io/netty/channel/local/package-info.java | 12 +- .../java/io/netty/channel/package-info.java | 12 +- .../io/netty/channel/rxtx/RXTXChannel.java | 12 +- .../netty/channel/rxtx/RXTXChannelConfig.java | 12 +- .../channel/rxtx/RXTXChannelFactory.java | 12 +- .../netty/channel/rxtx/RXTXChannelSink.java | 12 +- .../netty/channel/rxtx/RXTXDeviceAddress.java | 12 +- .../socket/ClientSocketChannelFactory.java | 12 +- .../netty/channel/socket/DatagramChannel.java | 12 +- .../channel/socket/DatagramChannelConfig.java | 12 +- .../socket/DatagramChannelFactory.java | 12 +- .../socket/DefaultDatagramChannelConfig.java | 12 +- .../DefaultServerSocketChannelConfig.java | 12 +- .../socket/DefaultSocketChannelConfig.java | 12 +- .../channel/socket/ServerSocketChannel.java | 12 +- .../socket/ServerSocketChannelConfig.java | 12 +- .../socket/ServerSocketChannelFactory.java | 12 +- .../netty/channel/socket/SocketChannel.java | 12 +- .../channel/socket/SocketChannelConfig.java | 12 +- .../AcceptedServerChannelPipelineFactory.java | 12 +- .../AcceptedServerChannelRequestDispatch.java | 12 +- .../socket/http/DefaultTunnelIdGenerator.java | 12 +- .../http/HttpTunnelAcceptedChannel.java | 12 +- .../http/HttpTunnelAcceptedChannelConfig.java | 12 +- .../HttpTunnelAcceptedChannelFactory.java | 12 +- .../HttpTunnelAcceptedChannelReceiver.java | 17 +- .../http/HttpTunnelAcceptedChannelSink.java | 12 +- .../socket/http/HttpTunnelChannelConfig.java | 12 +- .../socket/http/HttpTunnelClientChannel.java | 12 +- .../http/HttpTunnelClientChannelConfig.java | 12 +- .../http/HttpTunnelClientChannelFactory.java | 12 +- .../http/HttpTunnelClientChannelSink.java | 12 +- .../http/HttpTunnelClientPollHandler.java | 12 +- .../http/HttpTunnelClientSendHandler.java | 12 +- .../http/HttpTunnelClientWorkerOwner.java | 12 +- .../socket/http/HttpTunnelMessageUtils.java | 12 +- .../socket/http/HttpTunnelServerChannel.java | 12 +- .../http/HttpTunnelServerChannelConfig.java | 12 +- .../http/HttpTunnelServerChannelFactory.java | 12 +- .../http/HttpTunnelServerChannelSink.java | 12 +- .../socket/http/SaturationManager.java | 17 +- .../socket/http/SaturationStateChange.java | 17 +- .../socket/http/ServerMessageSwitch.java | 12 +- ...erverMessageSwitchDownstreamInterface.java | 12 +- .../ServerMessageSwitchUpstreamInterface.java | 12 +- .../socket/http/TunnelIdGenerator.java | 12 +- .../TunnelWrappedServerChannelHandler.java | 12 +- .../channel/socket/http/WriteFragmenter.java | 12 +- .../channel/socket/http/WriteSplitter.java | 12 +- .../channel/socket/http/package-info.java | 12 +- .../socket/nio/AbstractWriteRequestQueue.java | 18 +- .../nio/DefaultNioDatagramChannelConfig.java | 12 +- .../nio/DefaultNioSocketChannelConfig.java | 12 +- .../socket/nio/NioAcceptedSocketChannel.java | 12 +- .../socket/nio/NioClientSocketChannel.java | 12 +- .../nio/NioClientSocketChannelFactory.java | 12 +- .../nio/NioClientSocketPipelineSink.java | 12 +- .../socket/nio/NioDatagramChannel.java | 12 +- .../socket/nio/NioDatagramChannelConfig.java | 12 +- .../socket/nio/NioDatagramChannelFactory.java | 12 +- .../socket/nio/NioDatagramPipelineSink.java | 12 +- .../channel/socket/nio/NioDatagramWorker.java | 12 +- .../socket/nio/NioProviderMetadata.java | 12 +- .../socket/nio/NioServerSocketChannel.java | 12 +- .../nio/NioServerSocketChannelFactory.java | 12 +- .../nio/NioServerSocketPipelineSink.java | 12 +- .../channel/socket/nio/NioSocketChannel.java | 12 +- .../socket/nio/NioSocketChannelConfig.java | 12 +- .../netty/channel/socket/nio/NioWorker.java | 12 +- .../channel/socket/nio/SelectorUtil.java | 12 +- .../socket/nio/SocketReceiveBufferPool.java | 12 +- .../socket/nio/SocketSendBufferPool.java | 12 +- .../channel/socket/nio/package-info.java | 12 +- .../socket/oio/OioAcceptedSocketChannel.java | 12 +- .../socket/oio/OioClientSocketChannel.java | 12 +- .../oio/OioClientSocketChannelFactory.java | 12 +- .../oio/OioClientSocketPipelineSink.java | 12 +- .../socket/oio/OioDatagramChannel.java | 12 +- .../socket/oio/OioDatagramChannelFactory.java | 12 +- .../socket/oio/OioDatagramPipelineSink.java | 12 +- .../channel/socket/oio/OioDatagramWorker.java | 12 +- .../socket/oio/OioServerSocketChannel.java | 12 +- .../oio/OioServerSocketChannelFactory.java | 12 +- .../oio/OioServerSocketPipelineSink.java | 12 +- .../channel/socket/oio/OioSocketChannel.java | 12 +- .../netty/channel/socket/oio/OioWorker.java | 12 +- .../channel/socket/oio/package-info.java | 12 +- .../io/netty/channel/socket/package-info.java | 12 +- .../NettyLoggerConfigurator.java | 12 +- .../microcontainer/package-info.java | 12 +- .../container/osgi/NettyBundleActivator.java | 12 +- .../io/netty/container/osgi/package-info.java | 12 +- .../spring/NettyLoggerConfigurator.java | 12 +- .../netty/container/spring/package-info.java | 12 +- .../netty/example/discard/DiscardClient.java | 12 +- .../example/discard/DiscardClientHandler.java | 12 +- .../netty/example/discard/DiscardServer.java | 12 +- .../example/discard/DiscardServerHandler.java | 12 +- .../io/netty/example/echo/EchoClient.java | 12 +- .../netty/example/echo/EchoClientHandler.java | 12 +- .../io/netty/example/echo/EchoServer.java | 12 +- .../netty/example/echo/EchoServerHandler.java | 12 +- .../example/factorial/BigIntegerDecoder.java | 12 +- .../example/factorial/FactorialClient.java | 12 +- .../factorial/FactorialClientHandler.java | 12 +- .../FactorialClientPipelineFactory.java | 12 +- .../example/factorial/FactorialServer.java | 12 +- .../factorial/FactorialServerHandler.java | 12 +- .../FactorialServerPipelineFactory.java | 12 +- .../example/factorial/NumberEncoder.java | 12 +- .../http/file/HttpStaticFileServer.java | 12 +- .../file/HttpStaticFileServerHandler.java | 12 +- .../HttpStaticFileServerPipelineFactory.java | 12 +- .../netty/example/http/snoop/HttpClient.java | 12 +- .../http/snoop/HttpClientPipelineFactory.java | 12 +- .../http/snoop/HttpRequestHandler.java | 12 +- .../http/snoop/HttpResponseHandler.java | 12 +- .../netty/example/http/snoop/HttpServer.java | 12 +- .../http/snoop/HttpServerPipelineFactory.java | 12 +- .../netty/example/http/upload/HttpClient.java | 12 +- .../upload/HttpClientPipelineFactory.java | 12 +- .../http/upload/HttpRequestHandler.java | 12 +- .../http/upload/HttpResponseHandler.java | 12 +- .../netty/example/http/upload/HttpServer.java | 12 +- .../upload/HttpServerPipelineFactory.java | 12 +- .../http/websocket/WebSocketServer.java | 12 +- .../websocket/WebSocketServerHandler.java | 12 +- .../websocket/WebSocketServerIndexPage.java | 12 +- .../WebSocketServerPipelineFactory.java | 12 +- .../websocketx/autobahn/WebSocketServer.java | 12 +- .../autobahn/WebSocketServerHandler.java | 12 +- .../WebSocketServerPipelineFactory.java | 12 +- .../websocketx/autobahn/package-info.java | 12 +- .../example/http/websocketx/client/App.java | 12 +- .../client/WebSocketHttpResponseDecoder.java | 12 +- .../http/websocketx/client/package-info.java | 12 +- .../websocketx/server/WebSocketServer.java | 12 +- .../server/WebSocketServerHandler.java | 12 +- .../server/WebSocketServerIndexPage.java | 12 +- .../WebSocketServerPipelineFactory.java | 12 +- .../http/websocketx/server/package-info.java | 12 +- .../sslserver/WebSocketSslServer.java | 12 +- .../sslserver/WebSocketSslServerHandler.java | 12 +- .../WebSocketSslServerIndexPage.java | 12 +- .../WebSocketSslServerPipelineFactory.java | 12 +- .../WebSocketSslServerSslContext.java | 12 +- .../websocketx/sslserver/package-info.java | 12 +- .../io/netty/example/iostream/IOStream.java | 12 +- .../io/netty/example/local/LocalExample.java | 12 +- .../local/LocalExampleMultthreaded.java | 12 +- .../local/LocalServerPipelineFactory.java | 12 +- .../example/localtime/LocalTimeClient.java | 12 +- .../localtime/LocalTimeClientHandler.java | 12 +- .../LocalTimeClientPipelineFactory.java | 12 +- .../example/localtime/LocalTimeProtocol.java | 16 ++ .../example/localtime/LocalTimeServer.java | 12 +- .../localtime/LocalTimeServerHandler.java | 12 +- .../LocalTimeServerPipelineFactory.java | 12 +- .../example/objectecho/ObjectEchoClient.java | 12 +- .../objectecho/ObjectEchoClientHandler.java | 12 +- .../example/objectecho/ObjectEchoServer.java | 12 +- .../objectecho/ObjectEchoServerHandler.java | 12 +- .../PortUnificationServer.java | 12 +- .../PortUnificationServerHandler.java | 12 +- .../io/netty/example/proxy/HexDumpProxy.java | 12 +- .../proxy/HexDumpProxyInboundHandler.java | 12 +- .../proxy/HexDumpProxyPipelineFactory.java | 12 +- .../example/qotm/QuoteOfTheMomentClient.java | 12 +- .../qotm/QuoteOfTheMomentClientHandler.java | 12 +- .../example/qotm/QuoteOfTheMomentServer.java | 12 +- .../qotm/QuoteOfTheMomentServerHandler.java | 12 +- .../example/securechat/SecureChatClient.java | 12 +- .../securechat/SecureChatClientHandler.java | 12 +- .../SecureChatClientPipelineFactory.java | 12 +- .../securechat/SecureChatKeyStore.java | 12 +- .../example/securechat/SecureChatServer.java | 12 +- .../securechat/SecureChatServerHandler.java | 12 +- .../SecureChatServerPipelineFactory.java | 12 +- .../SecureChatSslContextFactory.java | 12 +- .../SecureChatTrustManagerFactory.java | 12 +- .../io/netty/example/telnet/TelnetClient.java | 12 +- .../example/telnet/TelnetClientHandler.java | 12 +- .../telnet/TelnetClientPipelineFactory.java | 12 +- .../io/netty/example/telnet/TelnetServer.java | 12 +- .../example/telnet/TelnetServerHandler.java | 12 +- .../telnet/TelnetServerPipelineFactory.java | 12 +- .../io/netty/example/uptime/UptimeClient.java | 12 +- .../example/uptime/UptimeClientHandler.java | 12 +- .../io/netty/handler/codec/base64/Base64.java | 12 +- .../handler/codec/base64/Base64Decoder.java | 12 +- .../handler/codec/base64/Base64Dialect.java | 12 +- .../handler/codec/base64/Base64Encoder.java | 12 +- .../handler/codec/base64/package-info.java | 12 +- .../handler/codec/bytes/ByteArrayDecoder.java | 12 +- .../handler/codec/bytes/ByteArrayEncoder.java | 12 +- .../handler/codec/bytes/package-info.java | 12 +- .../compression/CompressionException.java | 12 +- .../codec/compression/ZlibDecoder.java | 12 +- .../codec/compression/ZlibEncoder.java | 12 +- .../handler/codec/compression/ZlibUtil.java | 12 +- .../codec/compression/ZlibWrapper.java | 12 +- .../codec/compression/package-info.java | 12 +- .../codec/embedder/AbstractCodecEmbedder.java | 12 +- .../handler/codec/embedder/CodecEmbedder.java | 12 +- .../embedder/CodecEmbedderException.java | 12 +- .../codec/embedder/DecoderEmbedder.java | 12 +- .../codec/embedder/EmbeddedChannel.java | 12 +- .../embedder/EmbeddedChannelFactory.java | 12 +- .../codec/embedder/EmbeddedSocketAddress.java | 12 +- .../codec/embedder/EncoderEmbedder.java | 12 +- .../handler/codec/embedder/package-info.java | 12 +- .../codec/frame/CorruptedFrameException.java | 12 +- .../frame/DelimiterBasedFrameDecoder.java | 12 +- .../netty/handler/codec/frame/Delimiters.java | 12 +- .../codec/frame/FixedLengthFrameDecoder.java | 12 +- .../handler/codec/frame/FrameDecoder.java | 12 +- .../frame/LengthFieldBasedFrameDecoder.java | 12 +- .../codec/frame/LengthFieldPrepender.java | 12 +- .../codec/frame/TooLongFrameException.java | 12 +- .../handler/codec/frame/package-info.java | 12 +- .../codec/http/AbstractDiskHttpData.java | 12 +- .../handler/codec/http/AbstractHttpData.java | 12 +- .../codec/http/AbstractMemoryHttpData.java | 12 +- .../netty/handler/codec/http/Attribute.java | 12 +- .../codec/http/CaseIgnoringComparator.java | 12 +- .../io/netty/handler/codec/http/Cookie.java | 12 +- .../handler/codec/http/CookieDecoder.java | 12 +- .../handler/codec/http/CookieEncoder.java | 12 +- .../handler/codec/http/CookieHeaderNames.java | 12 +- .../handler/codec/http/DefaultCookie.java | 12 +- .../handler/codec/http/DefaultHttpChunk.java | 12 +- .../codec/http/DefaultHttpChunkTrailer.java | 12 +- .../codec/http/DefaultHttpDataFactory.java | 12 +- .../codec/http/DefaultHttpMessage.java | 12 +- .../codec/http/DefaultHttpRequest.java | 12 +- .../codec/http/DefaultHttpResponse.java | 12 +- .../handler/codec/http/DiskAttribute.java | 12 +- .../handler/codec/http/DiskFileUpload.java | 12 +- .../netty/handler/codec/http/FileUpload.java | 12 +- .../netty/handler/codec/http/HttpChunk.java | 12 +- .../codec/http/HttpChunkAggregator.java | 12 +- .../handler/codec/http/HttpChunkTrailer.java | 12 +- .../handler/codec/http/HttpClientCodec.java | 12 +- .../handler/codec/http/HttpCodecUtil.java | 12 +- .../codec/http/HttpContentCompressor.java | 12 +- .../codec/http/HttpContentDecoder.java | 12 +- .../codec/http/HttpContentDecompressor.java | 12 +- .../codec/http/HttpContentEncoder.java | 12 +- .../io/netty/handler/codec/http/HttpData.java | 12 +- .../handler/codec/http/HttpDataFactory.java | 12 +- .../codec/http/HttpHeaderDateFormat.java | 12 +- .../netty/handler/codec/http/HttpHeaders.java | 12 +- .../netty/handler/codec/http/HttpMessage.java | 12 +- .../codec/http/HttpMessageDecoder.java | 12 +- .../codec/http/HttpMessageEncoder.java | 12 +- .../netty/handler/codec/http/HttpMethod.java | 12 +- .../handler/codec/http/HttpPostBodyUtil.java | 12 +- .../codec/http/HttpPostRequestDecoder.java | 12 +- .../codec/http/HttpPostRequestEncoder.java | 12 +- .../netty/handler/codec/http/HttpRequest.java | 12 +- .../codec/http/HttpRequestDecoder.java | 12 +- .../codec/http/HttpRequestEncoder.java | 12 +- .../handler/codec/http/HttpResponse.java | 12 +- .../codec/http/HttpResponseDecoder.java | 12 +- .../codec/http/HttpResponseEncoder.java | 12 +- .../codec/http/HttpResponseStatus.java | 12 +- .../handler/codec/http/HttpServerCodec.java | 12 +- .../netty/handler/codec/http/HttpVersion.java | 12 +- .../handler/codec/http/InterfaceHttpData.java | 12 +- .../handler/codec/http/InternalAttribute.java | 12 +- .../handler/codec/http/MemoryAttribute.java | 12 +- .../handler/codec/http/MemoryFileUpload.java | 12 +- .../handler/codec/http/MixedAttribute.java | 12 +- .../handler/codec/http/MixedFileUpload.java | 12 +- .../codec/http/QueryStringDecoder.java | 12 +- .../codec/http/QueryStringEncoder.java | 12 +- .../handler/codec/http/package-info.java | 12 +- .../http/websocket/DefaultWebSocketFrame.java | 12 +- .../codec/http/websocket/WebSocketFrame.java | 12 +- .../http/websocket/WebSocketFrameDecoder.java | 12 +- .../http/websocket/WebSocketFrameEncoder.java | 12 +- .../codec/http/websocket/package-info.java | 12 +- .../http/websocketx/BinaryWebSocketFrame.java | 12 +- .../http/websocketx/CloseWebSocketFrame.java | 12 +- .../ContinuationWebSocketFrame.java | 12 +- .../http/websocketx/PingWebSocketFrame.java | 12 +- .../http/websocketx/PongWebSocketFrame.java | 12 +- .../http/websocketx/TextWebSocketFrame.java | 12 +- .../websocketx/WebSocket00FrameDecoder.java | 12 +- .../websocketx/WebSocket00FrameEncoder.java | 12 +- .../websocketx/WebSocketClientHandshaker.java | 12 +- .../WebSocketClientHandshaker00.java | 12 +- .../WebSocketClientHandshaker10.java | 12 +- .../WebSocketClientHandshaker17.java | 12 +- .../WebSocketClientHandshakerFactory.java | 12 +- .../codec/http/websocketx/WebSocketFrame.java | 12 +- .../http/websocketx/WebSocketFrameType.java | 12 +- .../WebSocketHandshakeException.java | 12 +- .../websocketx/WebSocketServerHandshaker.java | 12 +- .../WebSocketServerHandshaker00.java | 12 +- .../WebSocketServerHandshaker10.java | 12 +- .../WebSocketServerHandshaker17.java | 12 +- .../WebSocketServerHandshakerFactory.java | 12 +- .../WebSocketSpecificationVersion.java | 12 +- .../codec/http/websocketx/package-info.java | 12 +- .../handler/codec/oneone/OneToOneDecoder.java | 12 +- .../handler/codec/oneone/OneToOneEncoder.java | 12 +- .../handler/codec/oneone/package-info.java | 12 +- .../codec/protobuf/ProtobufDecoder.java | 12 +- .../codec/protobuf/ProtobufEncoder.java | 12 +- .../ProtobufVarint32FrameDecoder.java | 12 +- .../ProtobufVarint32LengthFieldPrepender.java | 12 +- .../handler/codec/protobuf/package-info.java | 12 +- .../handler/codec/replay/ReplayError.java | 12 +- .../codec/replay/ReplayingDecoder.java | 12 +- .../codec/replay/ReplayingDecoderBuffer.java | 12 +- .../UnreplayableOperationException.java | 12 +- .../replay/UnsafeDynamicChannelBuffer.java | 12 +- .../netty/handler/codec/replay/VoidEnum.java | 12 +- .../handler/codec/replay/package-info.java | 12 +- .../netty/handler/codec/rtsp/RtspHeaders.java | 12 +- .../codec/rtsp/RtspMessageDecoder.java | 12 +- .../codec/rtsp/RtspMessageEncoder.java | 12 +- .../netty/handler/codec/rtsp/RtspMethods.java | 12 +- .../codec/rtsp/RtspRequestDecoder.java | 12 +- .../codec/rtsp/RtspRequestEncoder.java | 12 +- .../codec/rtsp/RtspResponseDecoder.java | 12 +- .../codec/rtsp/RtspResponseEncoder.java | 12 +- .../codec/rtsp/RtspResponseStatuses.java | 12 +- .../handler/codec/rtsp/RtspVersions.java | 12 +- .../handler/codec/rtsp/package-info.java | 12 +- .../serialization/CachingClassResolver.java | 12 +- .../ClassLoaderClassResolver.java | 12 +- .../codec/serialization/ClassResolver.java | 12 +- .../codec/serialization/ClassResolvers.java | 12 +- .../CompactObjectInputStream.java | 12 +- .../CompactObjectOutputStream.java | 12 +- .../CompatibleObjectDecoder.java | 12 +- .../CompatibleObjectDecoderState.java | 12 +- .../CompatibleObjectEncoder.java | 12 +- .../codec/serialization/ObjectDecoder.java | 12 +- .../ObjectDecoderInputStream.java | 12 +- .../codec/serialization/ObjectEncoder.java | 12 +- .../ObjectEncoderOutputStream.java | 12 +- .../codec/serialization/ReferenceMap.java | 12 +- .../codec/serialization/SoftReferenceMap.java | 12 +- .../serialization/SwitchableInputStream.java | 12 +- .../codec/serialization/WeakReferenceMap.java | 12 +- .../codec/serialization/package-info.java | 12 +- .../handler/codec/string/StringDecoder.java | 12 +- .../handler/codec/string/StringEncoder.java | 12 +- .../handler/codec/string/package-info.java | 12 +- .../execution/ChannelEventRunnable.java | 12 +- .../handler/execution/ExecutionHandler.java | 12 +- .../MemoryAwareThreadPoolExecutor.java | 12 +- .../OrderedMemoryAwareThreadPoolExecutor.java | 12 +- .../netty/handler/execution/package-info.java | 12 +- .../java/io/netty/handler/ipfilter/CIDR.java | 12 +- .../java/io/netty/handler/ipfilter/CIDR4.java | 12 +- .../java/io/netty/handler/ipfilter/CIDR6.java | 12 +- .../handler/ipfilter/IpFilterListener.java | 24 +-- .../netty/handler/ipfilter/IpFilterRule.java | 12 +- .../handler/ipfilter/IpFilterRuleHandler.java | 12 +- .../handler/ipfilter/IpFilterRuleList.java | 24 +-- .../handler/ipfilter/IpFilteringHandler.java | 21 +- .../ipfilter/IpFilteringHandlerImpl.java | 24 +-- .../java/io/netty/handler/ipfilter/IpSet.java | 12 +- .../io/netty/handler/ipfilter/IpSubnet.java | 12 +- .../handler/ipfilter/IpSubnetFilterRule.java | 12 +- .../io/netty/handler/ipfilter/IpV4Subnet.java | 12 +- .../ipfilter/IpV4SubnetFilterRule.java | 12 +- .../handler/ipfilter/OneIpFilterHandler.java | 12 +- .../netty/handler/ipfilter/PatternRule.java | 24 +-- .../netty/handler/ipfilter/package-info.java | 12 +- .../netty/handler/logging/LoggingHandler.java | 12 +- .../netty/handler/logging/package-info.java | 12 +- .../handler/queue/BlockingReadHandler.java | 12 +- .../queue/BlockingReadTimeoutException.java | 12 +- .../handler/queue/BufferedWriteHandler.java | 12 +- .../io/netty/handler/queue/package-info.java | 12 +- .../region/ChannelWritableByteChannel.java | 18 +- .../handler/region/FileRegionEncoder.java | 18 +- .../netty/handler/ssl/ImmediateExecutor.java | 12 +- .../io/netty/handler/ssl/SslBufferPool.java | 12 +- .../java/io/netty/handler/ssl/SslHandler.java | 12 +- .../io/netty/handler/ssl/package-info.java | 12 +- .../io/netty/handler/stream/ChunkedFile.java | 12 +- .../io/netty/handler/stream/ChunkedInput.java | 12 +- .../netty/handler/stream/ChunkedNioFile.java | 12 +- .../handler/stream/ChunkedNioStream.java | 12 +- .../netty/handler/stream/ChunkedStream.java | 12 +- .../handler/stream/ChunkedWriteHandler.java | 12 +- .../io/netty/handler/stream/package-info.java | 12 +- .../timeout/DefaultIdleStateEvent.java | 12 +- .../io/netty/handler/timeout/IdleState.java | 12 +- .../timeout/IdleStateAwareChannelHandler.java | 12 +- .../IdleStateAwareChannelUpstreamHandler.java | 12 +- .../netty/handler/timeout/IdleStateEvent.java | 12 +- .../handler/timeout/IdleStateHandler.java | 12 +- .../handler/timeout/ReadTimeoutException.java | 12 +- .../handler/timeout/ReadTimeoutHandler.java | 12 +- .../handler/timeout/TimeoutException.java | 12 +- .../timeout/WriteTimeoutException.java | 12 +- .../handler/timeout/WriteTimeoutHandler.java | 12 +- .../netty/handler/timeout/package-info.java | 12 +- .../AbstractTrafficShapingHandler.java | 12 +- .../traffic/ChannelTrafficShapingHandler.java | 12 +- .../traffic/GlobalTrafficShapingHandler.java | 12 +- .../netty/handler/traffic/TrafficCounter.java | 12 +- .../netty/handler/traffic/package-info.java | 12 +- .../netty/logging/AbstractInternalLogger.java | 12 +- .../java/io/netty/logging/CommonsLogger.java | 12 +- .../netty/logging/CommonsLoggerFactory.java | 12 +- .../io/netty/logging/InternalLogLevel.java | 12 +- .../java/io/netty/logging/InternalLogger.java | 12 +- .../netty/logging/InternalLoggerFactory.java | 12 +- .../java/io/netty/logging/JBossLogger.java | 12 +- .../io/netty/logging/JBossLoggerFactory.java | 12 +- src/main/java/io/netty/logging/JdkLogger.java | 12 +- .../io/netty/logging/JdkLoggerFactory.java | 12 +- .../java/io/netty/logging/Log4JLogger.java | 12 +- .../io/netty/logging/Log4JLoggerFactory.java | 12 +- .../java/io/netty/logging/OsgiLogger.java | 12 +- .../io/netty/logging/OsgiLoggerFactory.java | 12 +- .../java/io/netty/logging/Slf4JLogger.java | 12 +- .../io/netty/logging/Slf4JLoggerFactory.java | 12 +- .../java/io/netty/logging/package-info.java | 12 +- src/main/java/io/netty/util/CharsetUtil.java | 12 +- src/main/java/io/netty/util/DebugUtil.java | 12 +- .../util/DefaultObjectSizeEstimator.java | 12 +- .../netty/util/EstimatableObjectWrapper.java | 12 +- .../util/ExternalResourceReleasable.java | 12 +- .../io/netty/util/ExternalResourceUtil.java | 12 +- .../java/io/netty/util/HashedWheelTimer.java | 12 +- src/main/java/io/netty/util/MapBackedSet.java | 12 +- .../io/netty/util/NamedThreadFactory.java | 12 +- .../io/netty/util/ObjectSizeEstimator.java | 12 +- src/main/java/io/netty/util/Timeout.java | 12 +- src/main/java/io/netty/util/Timer.java | 12 +- src/main/java/io/netty/util/TimerTask.java | 12 +- .../java/io/netty/util/UnsafeDetectUtil.java | 18 +- .../io/netty/util/VirtualExecutorService.java | 12 +- .../util/internal/AtomicFieldUpdaterUtil.java | 12 +- .../util/internal/ConcurrentHashMap.java | 12 +- .../internal/ConcurrentIdentityHashMap.java | 12 +- .../ConcurrentIdentityWeakKeyHashMap.java | 12 +- .../internal/ConcurrentWeakKeyHashMap.java | 12 +- .../netty/util/internal/ConversionUtil.java | 12 +- .../util/internal/DeadLockProofWorker.java | 12 +- .../io/netty/util/internal/ExecutorUtil.java | 12 +- .../internal/LegacyLinkedTransferQueue.java | 12 +- .../util/internal/LinkedTransferQueue.java | 19 +- .../netty/util/internal/NonReentrantLock.java | 12 +- .../io/netty/util/internal/QueueFactory.java | 18 +- .../netty/util/internal/ReusableIterator.java | 12 +- .../SharedResourceMisuseDetector.java | 12 +- .../util/internal/StackTraceSimplifier.java | 12 +- .../io/netty/util/internal/StringUtil.java | 12 +- .../util/internal/SystemPropertyUtil.java | 12 +- .../util/internal/ThreadLocalBoolean.java | 12 +- .../util/internal/ThreadLocalRandom.java | 12 +- .../util/internal/UnterminatableExecutor.java | 12 +- .../io/netty/util/internal/jzlib/Adler32.java | 38 +--- .../io/netty/util/internal/jzlib/CRC32.java | 12 +- .../io/netty/util/internal/jzlib/Deflate.java | 38 +--- .../netty/util/internal/jzlib/InfBlocks.java | 38 +--- .../netty/util/internal/jzlib/InfCodes.java | 38 +--- .../io/netty/util/internal/jzlib/InfTree.java | 38 +--- .../io/netty/util/internal/jzlib/Inflate.java | 38 +--- .../io/netty/util/internal/jzlib/JZlib.java | 38 +--- .../netty/util/internal/jzlib/StaticTree.java | 38 +--- .../io/netty/util/internal/jzlib/Tree.java | 38 +--- .../io/netty/util/internal/jzlib/ZStream.java | 38 +--- .../io/netty/util/internal/package-info.java | 12 +- src/main/java/io/netty/util/package-info.java | 12 +- .../AbstractSocketClientBootstrapTest.java | 12 +- .../AbstractSocketServerBootstrapTest.java | 12 +- .../bootstrap/BootstrapOrderedMapTest.java | 12 +- .../io/netty/bootstrap/BootstrapTest.java | 12 +- .../NioSocketClientBootstrapTest.java | 12 +- .../NioSocketServerBootstrapTest.java | 12 +- .../OioSocketClientBootstrapTest.java | 12 +- .../OioSocketServerBootstrapTest.java | 12 +- .../buffer/AbstractChannelBufferTest.java | 12 +- .../AbstractCompositeChannelBufferTest.java | 12 +- .../BigEndianCompositeChannelBufferTest.java | 12 +- .../BigEndianDirectChannelBufferTest.java | 12 +- .../BigEndianHeapChannelBufferTest.java | 12 +- ...ByteBufferBackedHeapChannelBufferTest.java | 12 +- .../buffer/ChannelBufferIndexFinderTest.java | 12 +- .../netty/buffer/ChannelBufferStreamTest.java | 12 +- .../io/netty/buffer/ChannelBuffersTest.java | 12 +- .../buffer/DuplicateChannelBufferTest.java | 12 +- .../buffer/DynamicChannelBufferTest.java | 12 +- ...ittleEndianCompositeChannelBufferTest.java | 12 +- .../LittleEndianDirectChannelBufferTest.java | 12 +- .../LittleEndianHeapChannelBufferTest.java | 12 +- .../buffer/ReadOnlyChannelBufferTest.java | 12 +- .../netty/buffer/SlicedChannelBufferTest.java | 12 +- .../buffer/TruncatedChannelBufferTest.java | 12 +- .../channel/CompleteChannelFutureTest.java | 12 +- .../channel/FailedChannelFutureTest.java | 12 +- .../channel/StaticChannelPipelineTest.java | 12 +- .../channel/SucceededChannelFutureTest.java | 12 +- .../socket/AbstractSocketEchoTest.java | 12 +- .../NioClientSocketShutdownTimeTest.java | 12 +- .../channel/socket/NioNioSocketEchoTest.java | 12 +- .../channel/socket/NioOioSocketEchoTest.java | 12 +- .../NioServerSocketShutdownTimeTest.java | 12 +- .../channel/socket/OioNioSocketEchoTest.java | 12 +- .../channel/socket/OioOioSocketEchoTest.java | 12 +- ...eptedServerChannelRequestDispatchTest.java | 12 +- .../socket/http/FakeChannelConfig.java | 12 +- .../channel/socket/http/FakeChannelSink.java | 12 +- .../http/FakeClientSocketChannelFactory.java | 12 +- .../socket/http/FakeServerSocketChannel.java | 12 +- .../http/FakeServerSocketChannelConfig.java | 12 +- .../http/FakeServerSocketChannelFactory.java | 12 +- .../socket/http/FakeSocketChannel.java | 12 +- .../HttpTunnelAcceptedChannelSinkTest.java | 12 +- .../HttpTunnelClientChannelConfigTest.java | 12 +- .../http/HttpTunnelClientChannelTest.java | 12 +- .../http/HttpTunnelClientPollHandlerTest.java | 12 +- .../http/HttpTunnelClientSendHandlerTest.java | 12 +- .../HttpTunnelServerChannelFactoryTest.java | 12 +- .../http/HttpTunnelServerChannelSinkTest.java | 12 +- .../http/HttpTunnelServerChannelTest.java | 12 +- .../socket/http/HttpTunnelSoakTester.java | 12 +- .../channel/socket/http/HttpTunnelTest.java | 12 +- .../socket/http/MockChannelStateListener.java | 12 +- .../channel/socket/http/NettyTestUtils.java | 12 +- .../socket/http/NettyTestUtilsTest.java | 12 +- .../socket/http/NullChannelHandler.java | 12 +- .../socket/http/SaturationManagerTest.java | 18 +- .../socket/http/ServerMessageSwitchTest.java | 12 +- .../socket/http/UpstreamEventCatcher.java | 12 +- .../socket/http/WriteFragmenterTest.java | 12 +- .../socket/http/WriteSplitterTest.java | 12 +- .../socket/nio/NioDatagramChannelTest.java | 12 +- .../channel/socket/nio/SimpleHandler.java | 12 +- .../netty/channel/socket/nio/UdpClient.java | 12 +- .../codec/bytes/ByteArrayDecoderTest.java | 12 +- .../codec/bytes/ByteArrayEncoderTest.java | 12 +- .../AbstractSocketFixedLengthEchoTest.java | 12 +- .../frame/DelimiterBasedFrameDecoderTest.java | 12 +- .../LengthFieldBasedFrameDecoderTest.java | 12 +- .../NioNioSocketFixedLengthEchoTest.java | 12 +- .../NioOioSocketFixedLengthEchoTest.java | 12 +- .../OioNioSocketFixedLengthEchoTest.java | 12 +- .../OioOioSocketFixedLengthEchoTest.java | 12 +- .../handler/codec/http/CookieDecoderTest.java | 12 +- .../handler/codec/http/CookieEncoderTest.java | 12 +- .../codec/http/DefaultHttpMessageTest.java | 12 +- .../codec/http/HttpHeaderDateFormatTest.java | 15 ++ .../codec/http/QueryStringDecoderTest.java | 12 +- .../ProtobufVarint32FrameDecoderTest.java | 12 +- ...tobufVarint32LengthFieldPrependerTest.java | 12 +- .../codec/replay/ReplayingDecoderTest.java | 12 +- ...tSocketCompatibleObjectStreamEchoTest.java | 12 +- .../AbstractSocketObjectStreamEchoTest.java | 12 +- .../CompactObjectSerializationTest.java | 12 +- ...oSocketCompatibleObjectStreamEchoTest.java | 12 +- .../NioNioSocketObjectStreamEchoTest.java | 12 +- ...oSocketCompatibleObjectStreamEchoTest.java | 12 +- .../NioOioSocketObjectStreamEchoTest.java | 12 +- ...oSocketCompatibleObjectStreamEchoTest.java | 12 +- .../OioNioSocketObjectStreamEchoTest.java | 12 +- ...oSocketCompatibleObjectStreamEchoTest.java | 12 +- .../OioOioSocketObjectStreamEchoTest.java | 12 +- .../SwitchableInputStreamTest.java | 12 +- .../string/AbstractSocketStringEchoTest.java | 12 +- .../string/NioNioSocketStringEchoTest.java | 12 +- .../string/NioOioSocketStringEchoTest.java | 12 +- .../string/OioNioSocketStringEchoTest.java | 12 +- .../string/OioOioSocketStringEchoTest.java | 12 +- .../handler/ipfilter/IpFilterRuleTest.java | 15 ++ .../ssl/AbstractSocketSslEchoTest.java | 12 +- .../handler/ssl/ImmediateExecutorTest.java | 12 +- .../handler/ssl/NioNioSocketSslEchoTest.java | 12 +- .../handler/ssl/NioOioSocketSslEchoTest.java | 12 +- .../handler/ssl/OioNioSocketSslEchoTest.java | 12 +- .../handler/ssl/OioOioSocketSslEchoTest.java | 12 +- .../logging/CommonsLoggerFactoryTest.java | 12 +- .../io/netty/logging/CommonsLoggerTest.java | 12 +- .../logging/InternalLoggerFactoryTest.java | 12 +- .../netty/logging/JBossLoggerFactoryTest.java | 12 +- .../io/netty/logging/JBossLoggerTest.java | 12 +- .../netty/logging/JdkLoggerFactoryTest.java | 12 +- .../java/io/netty/logging/JdkLoggerTest.java | 12 +- .../netty/logging/Log4JLoggerFactoryTest.java | 12 +- .../io/netty/logging/Log4JLoggerTest.java | 12 +- .../netty/logging/Slf4JLoggerFactoryTest.java | 12 +- .../io/netty/logging/Slf4JLoggerTest.java | 12 +- .../java/io/netty/util/DebugUtilTest.java | 12 +- src/test/java/io/netty/util/DummyHandler.java | 12 +- .../java/io/netty/util/MapBackedSetTest.java | 12 +- src/test/java/io/netty/util/TestUtil.java | 12 +- .../util/internal/ConversionUtilTest.java | 12 +- .../internal/StackTraceSimplifierTest.java | 12 +- .../netty/util/internal/StringUtilTest.java | 12 +- src/xref/stylesheet.css | 188 ------------------ 718 files changed, 4425 insertions(+), 4870 deletions(-) delete mode 100644 src/javadoc/resources/bkg_blkheader.png delete mode 100644 src/javadoc/resources/bkg_gradient.gif delete mode 100644 src/javadoc/resources/bkgheader.png delete mode 100644 src/javadoc/resources/h1_hdr.png delete mode 100644 src/javadoc/stylesheet.css delete mode 100644 src/xref/stylesheet.css diff --git a/.fbfilter.xml b/.fbfilter.xml index 1c4fff72b0..5120b4f0a1 100644 --- a/.fbfilter.xml +++ b/.fbfilter.xml @@ -1,4 +1,19 @@ + diff --git a/pom.xml b/pom.xml index 896657234e..ca48f244da 100644 --- a/pom.xml +++ b/pom.xml @@ -1,19 +1,19 @@ + ~ Copyright 2011 The Netty Project + ~ + ~ The Netty Project licenses this file to you under the Apache License, + ~ version 2.0 (the "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at: + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + ~ License for the specific language governing permissions and limitations + ~ under the License. + --> 4.0.0 @@ -296,7 +296,6 @@ ${basedir} false - COPYRIGHT.txt LICENSE.txt NOTICE.txt license/*.txt @@ -485,7 +484,6 @@ org.jboss.apiviz.APIviz ${basedir}/lib/apiviz-1.3.1.GA.jar false - ${basedir}/src/javadoc/stylesheet.css ${basedir}/src/javadoc true true @@ -542,7 +540,6 @@ true ${project.build.directory}/xref ${project.build.directory}/api - ${basedir}/src/xref/stylesheet.css ${project.name} Source Xref (${project.version}) ${project.name} Source Xref (${project.version}) diff --git a/src/assembly/default.xml b/src/assembly/default.xml index 4ffabed425..8b931cbc70 100644 --- a/src/assembly/default.xml +++ b/src/assembly/default.xml @@ -1,19 +1,19 @@ + ~ Copyright 2011 The Netty Project + ~ + ~ The Netty Project licenses this file to you under the Apache License, + ~ version 2.0 (the "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at: + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + ~ License for the specific language governing permissions and limitations + ~ under the License. + --> dist diff --git a/src/javadoc/overview.html b/src/javadoc/overview.html index a2a39dae9a..2400b25973 100644 --- a/src/javadoc/overview.html +++ b/src/javadoc/overview.html @@ -1,18 +1,18 @@ + ~ Copyright 2011 The Netty Project + ~ + ~ The Netty Project licenses this file to you under the Apache License, + ~ version 2.0 (the "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at: + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + ~ License for the specific language governing permissions and limitations + ~ under the License. + --> The Netty Project API Reference diff --git a/src/javadoc/resources/bkg_blkheader.png b/src/javadoc/resources/bkg_blkheader.png deleted file mode 100644 index 6bf14786360c1242c17ae98c5ede8aad2ba8d24b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2834 zcmV+t3+?oYP)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z0000zNkl&u*IIX-M25%-V+1)w1|~WA!r3bK k`?il!nIgBH?8!g&0FI+ui{)S~kN^Mx07*qoM6N<$g4@PH;s5{u diff --git a/src/javadoc/resources/bkg_gradient.gif b/src/javadoc/resources/bkg_gradient.gif deleted file mode 100644 index e67f720dc605e2c739e6044224451a5e26cd2b35..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 294 zcmW+xJxjw-0DJ{;DHeoG9YhB=2XWGhpoo6!3O|c3HB8O`N2T59PFDe(Gm72 zW1LHdBkDGxOoTR%<1Ee5AL**)Mm)we@L8nUo@_XX1cpmopMDNi8~ZfRUD-r`s`;y$ zn6lxxCt%RQX_}EBR4k;J2s+-k48LS(Al#KS7V&{*@;Hg(BnTrKMn8%X<(@m3_C~tp zkt9vS@suRZvJ6bH5Kc{WDd+qXnBLypE8gyl^M$g8%gaKi_1vuNRIY{B$0y0_0d-V diff --git a/src/javadoc/resources/bkgheader.png b/src/javadoc/resources/bkgheader.png deleted file mode 100644 index 87ddf82196825046e8b21ed080cf5e6607ba4c8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2849 zcmV++3*PjJP)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z0000?NklgukwzTV*D)z;Ye_xH`v*1^Wj+1%jf=<3GF&AY(GxxU55 z%h9m5y}7{2;N$1Dy29Pw;Mv;U(bLtu!piXR^S8Xh+T7jN*xJ$6+OfF7*xK8}$jg?{x%+IsA!OPFo-{R%c*4*Rd=iJ@jz{JYF#LB(G$kNr> z&eGSs!N=m`<+r`W>FVp^<>~wT`~Cg>@9*#V`T6YZ?DO;U@$vEX_4Ufn*6#1}y~NG# z?(X{g``h2-)7aj|%+vPw_~hs6!N}0^^Yzcv+SlCS>Fe&KthKYbzqY-`!p6$n+}*do z$gH!ysIR!Pxx%cny0g2)&Ct@Xx4@{dxvH_crmeQV!^o$uxAOD!g=$$z|GIo@9^=!#mwN~;q314!^zO9vAMj#$gQ-y-rwNU*W1w4*!cPR%+J)o z#L39a(e(B9;Nal6z{&sr|M3wmOaK5TPDw;TRCwC#eTkdY#U_aRG$q@PcLfK z(Yfc`d#j{~`Y?!?{n?!P(V|QkLeNM)l}9sArOwQcHq%wJdb#W9rcpd@h`C`|#3CA( z17Cnou!Mp?Mmi^qtCkQlm59R37bjU+QQEWJSn*8?O1Sa?o!nNrWsY@JUv*HJ4>6{w)Is%x~=Fh&Vsl+Wo zsgeSeFyVwNoWaAYqT(AW+_h})#V6=z4hq)*W0r7><53jznCEgh9$FqbS3K^>e=9%h z0L(fayyQDr#1SWI)Ie!4ede4W{PK!QO{aDOOdB8d3`C!$am%twKD4ME@yITo6&Zw? zh)E~18Ktwx(%lLGI2iY6@wpLBFVhKdk0#6ri4&%L{+M**z_ml@%LAhJhD7q7Evh3r z=G|<#ge)!M8XO$F$|k_)_-gVB)8XQ=xa=iCDeU63Q|II{WuzSuw#zG*%${%4HV8)6 z0%eR4R~V5cpG-yMa8+gUZFH(IM*#+lJWbVY8Nv;ZPUjZzR*(#LbeL17K-e^4mf>(L zhbx59sAMC3F62>A4bKh8$D;s_uY9#*2+x*~B*4lgDD@*>$yCDOz_coQtBO!;K&STN z$nfTc5>@f+5o4A%P1B90Z|dMPy?VT%ZYeaP=;VRY;sv*9LUl_9vCESu&w<9B>e4Jg zDipwtO-qPs#W|+7oNB^tZph~oLt`p%o^C6OVlmxSxuS8c!hL~8rJPwCsS)1a;A)`} z@KK_030h!~h)n0wG%C^h!h+10d8X+JrW+L`JjEcSI1D&$su%yP&$DUbca7i==D_cn z!T^!1z^?|tFboL)?#v4gg>wZjb*eTZM87RnJsbrdB`OEgafL?INLN(HDBsb>lWM}x zW^LjM^jhjP@SBm00Lsr61-}$csp{p?dob^YqB}Y(WtwWkub9Rv4GCw&a1F3LHq(k( za6CtMlzj@k1`HapVL~NBCMInNEJ9bhgz1DjyCt4^3pI1ug2$sF*Tzix-v~8 zk>^O^XFR7SK6I}>koh;bys z@M=eu1oc!}T)h^skE?l#PEbHXC3L`*g)9}BAp&;Ti*;&8VaAy*ywP6Ef;k>$h^YC zP$|Vh@)1g8w6Ac=7*jZ&HW#f5a0+NH!Wo`HRd+Zcdf@{w;8m087@k(x9F^Nn2};x9 zn->CIy}Z7)w7Q{c@+E`|CL?@7=5|G0+Qf-;MseZ~;?Y;7nlLc*JH@e>iXWQ1q zMSvcg`UDxNRb&Wf^;4Z|YY*;met&hdm~z$78HeycYiXha8Zg>nHjK}n9lrhGdS{~C zU`}9~+%m62IR&+BvhGSb?FH9AfY7YKdgYPOdI4)BMsiwH#?sZZGThm~rn$Qlqf*Nar z`WAX*Qlgm-IGd=FAc{Qv7cyLUMATxy))qJ=WvW6=n_$?`F$ro~WoCoc*bZpp@Xv59 zgMpyXPk{Rd8(C5!@P=MbK3A$4H551mINug6BOgVJ7$KY$IBhmCsc={ot)tjo5_) zp~O83lvU!^kZ}@@RwarKfkKUHUxMogG~zMmo--AKGn`;mo7T5%8+5Z*hyc?*Ky{8w z4~Ly;YjB2j)jlE_Yraw8yF7ex&UtGCr>p(cv)HDq4Yd1?8GT@aU z4;{2#3I&j(3rD0Fw=Q(is?%a3uiZWi2WpeZvD8RI17;V*50KMzO@&9$U>LgU*&dHP z)v<_zx`0L0u!XJ_$*1{27`(15y?7R0GO7YG0Rq6}O901F(=gl@OL6me=k)?xFL#^&Gq@1I` zBLwOD{z4(x6dG|#fU7-#v#RM}uSEW^1IHJr%E$e7He6yHxT3S&eQ2=Wua|Y94<7Ea{F14Kc zrO7NKisqlMC<=Eysr+rAEARt47dA#rgH{H|)!sYzNf5|uy+)P58uF~h9YD@sE-_ix zaoFY36zOFH1VpIM|2h2F2D&N^aG1_gg7WARh3gCaGO!*%&Wea@m6=LREQ00Hz~n<{ zKr4=iD5$(joQOEUxR^R66UShcHcpPuAm5)*s?*!bC0M2ctzBelF6tZ5;K7gbAXuIiy{kCA>0E$T3~w=l#h;9G)*w9&6H)k z@@wd{D79d&v=nDXC8IHk%_lV!RF72#VDc3_{<4KWhdHySn@5(XU&sH*9KCs}S`^cNMz_<+0cE|EECrJVej0FU8i$>|{#Je?$B}lh zQ3ZpeF7Doy{a{tPNm<-IKVeD?W(7BG zF8n_37=l>XJ+!=de*#-izn6m31_nmsSx67_Y*^;YOLTVfwr47ehqV@fm;y=<)B_w1 zW2UNWF8XUr7}}xuslK~=Sgi%$-vxD>s-Tc)$*+vrpS`U8c@48`&Y$Th~wUO%r3PiDg3gL_!pq8F+oC(BWFyHiAz6l?y7&M9XP&aoU+O zawksPR^++TV?XbeKUA+aOXX)&7ab6g zbn)72?JXp-iJoX5;;=I~8n8n`-H9 z&;PoA_<`xc(D##|4BqjS_Gd$}1R8IhvCWI z#Of6NMjw7b+C%xKaaXYA3bX8oy-%j|cGNMpi=#S1Cvuxe(mm)RUd2~15P^6>MP*)y zyei6>F2tz@rRNpx*v9jfbrHQsabrpLc|_g-uN&Ud^)vt?l!+%5{SIAlcDqVWEzJ%3B_vUm9<3@7${NVkhj1yrkw^iwj&UZ3Abf6OE*p}&Hn>*JntlTY+cg9a|j34d~ zDj_*aJGop?G79r6xRQ+X=;EzS*@qLAj+bKZ_)J187-nJ8eSWG3&Ht+b@UX`;y8+W{ zWJ=k#TkkJ95}w(_d=D$K?A7v^_LZK+xI@K{S1{e9b6jY~u`6PEeE$z;b&!!HVuopA ze}`4{3rSEu9*-YBl*+(TWbY$rR#`#ng$aa2UEw#sj?qOdFW=vID+Z(OfBm8Fe|X`0 z__G|Ka?^I_1->zW(tG`6=1pqh&3H{IAz{+mIX%*U4aJGEeGq9<{ zp}VfGDMZygPuEmji?__j@8A+EMHrE6QZ)*<%{{x&^sAXt~=Uw=iigzw{gkh|{6X9BI+o1}s4z*PEhwVSxnr!ScB{j?S+$v>;%Kvw~ zad&k+AND#jcN4Y4bd>n*fuHpL#f0I0l59QRhL5|wcy(><%GX!E_E!dRJnH|V&Ledi zE%`b@Np%OCoS8z!b5Cm5SmO1=)Uhj&|UV!j&LuZcX00rTQFRSt3|qU?vBD; zMKdE|;0iw3bO26O1EaIFxVQ173s#}bgLFecVC7dvL*V1qgY7)b*KdFK>9^O6YnMJb z7Y{L9XMWs%QGRU38y3E83_O4$1SK<$GdxB1JnteX!|p67E%EgwK$J)Wptet1pOKwR`u|yeJq3SkCkZ@!9jA!cW(h z?_ExZ-HE*Dk76GXn%onyJOUx0Fmn(|=orT3u(ZeaWn>IP9Ebl(#djE@0DG-}V4O|0=>v=&#l7&CoKaSs<#eN8693(}7eHef#lFR*UuFz3Z z7H%r?24uno;>X8C^U;fE92*P$3o<$r>hZ^XwdU z0Lvu^aJb#XpJ&FP4bKV(?RJ=rg89P={N#nthQS&{{PIBgJg*Z}Rwu22Qm$XYB;;4I z%oKLB4{$B34OaWVZ!M?>RTPas`rGb<8{@ZS?#MBsqA9}>%DIQ%sD#fRMivfpf5LCQ zZ2!tLa6k$vyRo~2~{|=Z%LJ@==jqN zrA#JKu9q^Pla8XuW)89Gxd-3cvXfflORWcYT1#IDxirmF3AwqkxN%ouyJwi(<_x`e zsTRTHhch9!9fp0}oMV!;3erOhH@@G_N3txRWqAny<%2=HaYAn>C^2eLJvy$tr7I`f z4=Sr8N;blsb!=Q3s<}lwMK^7GOj8Nf&Rt#k*zj;=9t7US?MK^7pJ3X=HAF=8-|swG zzPq^d>tAomwS&UPt~8ld>4bSY7ohtgHka2nI_kv!A?~Idw}*o`O!F`e!!(Nz#`0#o zY2jNhR^uF=4a!Q7p5tOBZM zB0#%7*c_%^`pwn#)!%>acs4F9^SG{XMPo~M-^y>?KqX2XLwmBfu(7(c0dQU1!1hL& zmk$HOG=G~94Z^rdQ8u8QjIQL)m21_mPrA(2^hLLQ>*?U) z`|o{fX{Ov%(e$uYOtaaoe>mV^ZufAvD~8L#Zr#VeANI{1*~?JSuxA#f%&<56@zI~g z<6jk5z+hVL5uNs6kR%N-PcbO78YlyNWIJCeyAZ&G#A(oJr`hllcJ^v2ZWU#i)Daq2 zHQa^dhuts0u-wRpLQ$(dG30*cSHHlQXV@m>JH5#V%#h_b<2&0)B_sx^-^A?(l(=9p z?@xtg3Ci1f>n-_PTMyFqXpjvHOU~2?SduEj(FIjig=?0pvg9fg{XgdU*PoVmQz+L! zT#Tu0cIBe9c8t{-x!59$d;JLq(v3$Cwo0iP=lxESHmGbs2}T4lF+$&EdKt8PXmuJ?HlRc)hoFQ2zP?p1WCW&MUtgD49jzpvf&D1&FhnUM zmL+#9({;fjjp#O06$%a-iFCN1@9!;a@|}mp-WY29BPVSTiupe9qeLEjj1T`TOuif+ z{rc%F43j}Kcc&VZ(#&)K6w)H!F2i?{=Z|*pfDC;9tuU(QC<*olNjJ}jSvHuw=U={^JE*kX zOx|e*rB?y7TE^Hy_ubF)JNbIP@@%E$U&9qOtXRk8c_wo$MZ=)&=$=7viG*G9TiEl{ zcJOE{$KtZwWq-}n!f0_hyJiVX;F)tMvGIgDKUVfv$?ar4gq`! zAaVWOEsW(^xPPOC1iHPQCGBUrFx7~va$^ELVw`{TE0pNBr? z6s7HHJzURxKf7}SfVuMInWh`Mq7l@3{;CNgcE+MajB($_vXpGhI7UG1wi2>qn#0XjvXtgkSzA|@iYlOjXrTM~tB z*3EpmQ^te+{QIB2m74@m(h1t%?LW-#3GrV7@8_iwL)#laz51Ya89!&VKKx2Joh-kD z{J6O~Uiua1_t)gUlN!~DedOI}d-^D<*YCzek)l5|G2`~7AOiON0 zwrk0Hy<)ekYs4z{Zm~d8cHbXe*?MrRe?9UH$}TOQIWvCrKA1(qNuxR9jvyhSdgEK{jYAjHgOdwx?-9#lkImZs+?q z@*6jb)exl-$+KQ@i?UwT@*9WwxyMg;!|V%77}svM9(_OlcN9(Z! zB|pEmHpV?uNu=9^aEf>EfIny2=NvRx_4Lo6S{)Sl&GelzqvMB_&+xjjtmLe(mwiGQ zGI3AetT#>H?3R`3u$}DRz^3m&7#{?!$NLYjY&~pk{WL)ojyqt#pKJgcH+OcP?5*C% zb&f{FRYm8Ds;Ki@>G?B>@}TOrY(RPHKnc<>je{WQ#d8fp5|bFZhnC{lksc9W>>)AADCyLVp*1`fh8y$Jh2YH%m+Qp_rwn$+y<-k zXuQl<#~V9Oa3{c}1^(_JOfItGHjvDlTT+=Fk&tW>m8TDsq7#QlU~-6mcPF9~ZE%(p zZQwzX-Ll?esqUBZBD4_~}ZXKRv_w&UjDO8P&~&r9UNpc4ftngZ{Uk zsmPj(Y|!nbyZ^lS zo-LFK?L8Z0f#@v#5q`aTW^re4q1>T&^G{2Al6QmH4}ZG|FrG2s$)Mk<$MRvEvvTR!g$zvHt;Vl{IoE+ea`*0rMLK> z%j{0FxSFR3P&V1vC>*4<6=FWpZ5J+sG;BIDPAMowy|H&XWd1rhU`ARqZ z4|#uN4R3nP7nZ){a!YfS3X}e3h_}-==)b~27>=^r@F8KT9tOkq)ak$vU3ts9ZabUb zOrsem9F!eDKW+dGc8BwlGsxSiG(JN1LHhZJ*Q$4GhX~c+g8Yf-oPW8tu_#H0Dq_3yXx(I`)cUk5=~*nW`$NK$_meBGk-h#ApALzbrol>IP2en@%O34)rq z93;c;NP@X1Q%BwZcXd4*#z7lX@O~g7YW#Rs>P79HwZ(VJRgD`^%>Yc?AX;#lzunQWuA~+U^NcPq)sR zv{z(|{P+XB{f(z67vL$Kk5_;DDJQD*J0IJ80X8Hz zs5}LrJU)0QGd!B~<)%JKH!H(<&A+FZX79#jO(yWO;s!jvAIEVUEYhVfmzUqYf8*vi zpPye|KL1z09sKpnVpkVcwhHw-{*i4L{d#?ARAix=ae_fPPn6j(=yZcgDZD+~LX-}B zK|87TbE&^gDht%`!jkU_(=)`5I2c3U|9WL@?GH=iH92mCzW?@k`__Hc9jA zRQcvlD;WFLFR$$E{nL&xBh=3FL4Gg`*_o{+W%5GsOXuH=6AH?BzIIcgVYNCL$}uiTL@&rL~>KXF`}N*MzpQQUI;f#~b1uz$DN# zuD{6J^2#VH<=sYBo@`M1^ZptTHV?|fYmoKmJ?M#c(gE%a^0eQdz_l0FVP-1a5{_1E zz-Gd~94Z*^rt3XS%wv6fo&W)pvb5NT4-5Qh5-Ogh>1LcTP-b(PNSyMl*PXU!NOBq- zOdHLZ4M5YN7XWDb*flZTI$&7etIE(gs7Fl&Sh~y;hUYp$iA3kaR<8`w{@h+x!*XG5 z4>8yYC)YtIYpC)hgR<6(CZ1eidGN|e|Nmf8~g2Z;CDo+I{Ye~X-8ffBk+cRW2*BLR&l8)$4 zvDm4gEP7K)vozcNFMEKhW`Q(NaGoql>t=+1elufRiFmE<;Ir*TR znd52ju07moPaZwu79v^oaCK8feBKn5rb^)tVj5~B{QYn6raXQo%G#x5*sa{|WOPTEbL<^uGDa0umUkP8<-1OAuxR7L2fP`N z*+WJ&IXIYJ&D@WYcDFap091E{?3LJT*FZTsz^{N^Hk? zTVzq{$*y0yaok~}*aUbW;mhFTA_mtxQFi}n!Q zwj{M-HU!!nPL$<=TRcoQ34(u&+5u=uKd3;~&&pDzYz*oQfK0nR3C?Caf~pF3o@E@HCi4?v9i!n8+4!G67clW$?%O{s!P7e~?bCqr1cNe|&r$x2F$ibS(@E3ky`mG&TnOz$5e5$X z=(0_{$G90M43wSxbxiLJD2JoxmjHu0J@=02+D-B!+kQv2^iVTS8Yt02y!v|=ySEg1 z@7@ckfgr4M>YX@Gk3#N|6>h(&=$vFw4qpc-i;dG|&L)0Ah1wbBDb|OQFg%hEheyfX zQ64tA^Ailp(QB!V^pW?%JRA5go?hzqV&5Oc$Go7E9t}g78{p$Z`$w8_ zvOw8Mf63c7<9_Vfup;43FKhN*I}M-&RQ{sZQOleAgt)1Jyr)Xo+$!QUfO6(mc)!Ro zN~(23;jqaCoeofn&Kuxn0~}3l@$`VQ8O>-w*^Fj1pln71%4Rg90cA59P&T6(uVeh5 a00RI90OHxd^bO?z0000{ protected final BlockingQueue queue; diff --git a/src/main/java/io/netty/channel/socket/nio/DefaultNioDatagramChannelConfig.java b/src/main/java/io/netty/channel/socket/nio/DefaultNioDatagramChannelConfig.java index 7dba141abb..42c6db96ca 100644 --- a/src/main/java/io/netty/channel/socket/nio/DefaultNioDatagramChannelConfig.java +++ b/src/main/java/io/netty/channel/socket/nio/DefaultNioDatagramChannelConfig.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/DefaultNioSocketChannelConfig.java b/src/main/java/io/netty/channel/socket/nio/DefaultNioSocketChannelConfig.java index 47ec4f303a..e0228af325 100644 --- a/src/main/java/io/netty/channel/socket/nio/DefaultNioSocketChannelConfig.java +++ b/src/main/java/io/netty/channel/socket/nio/DefaultNioSocketChannelConfig.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioAcceptedSocketChannel.java b/src/main/java/io/netty/channel/socket/nio/NioAcceptedSocketChannel.java index 2601471df3..56d3fe8cc7 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioAcceptedSocketChannel.java +++ b/src/main/java/io/netty/channel/socket/nio/NioAcceptedSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioClientSocketChannel.java b/src/main/java/io/netty/channel/socket/nio/NioClientSocketChannel.java index 90ba882d91..c1a1af47d7 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioClientSocketChannel.java +++ b/src/main/java/io/netty/channel/socket/nio/NioClientSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioClientSocketChannelFactory.java b/src/main/java/io/netty/channel/socket/nio/NioClientSocketChannelFactory.java index 699c46d528..28cc631877 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioClientSocketChannelFactory.java +++ b/src/main/java/io/netty/channel/socket/nio/NioClientSocketChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioClientSocketPipelineSink.java b/src/main/java/io/netty/channel/socket/nio/NioClientSocketPipelineSink.java index 2ee2cc39e2..8fbe800ba6 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioClientSocketPipelineSink.java +++ b/src/main/java/io/netty/channel/socket/nio/NioClientSocketPipelineSink.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioDatagramChannel.java b/src/main/java/io/netty/channel/socket/nio/NioDatagramChannel.java index c635e8baa7..27cfe152b8 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioDatagramChannel.java +++ b/src/main/java/io/netty/channel/socket/nio/NioDatagramChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioDatagramChannelConfig.java b/src/main/java/io/netty/channel/socket/nio/NioDatagramChannelConfig.java index dd135c1cee..153971a208 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioDatagramChannelConfig.java +++ b/src/main/java/io/netty/channel/socket/nio/NioDatagramChannelConfig.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioDatagramChannelFactory.java b/src/main/java/io/netty/channel/socket/nio/NioDatagramChannelFactory.java index 92865a1577..d0063a21c7 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioDatagramChannelFactory.java +++ b/src/main/java/io/netty/channel/socket/nio/NioDatagramChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioDatagramPipelineSink.java b/src/main/java/io/netty/channel/socket/nio/NioDatagramPipelineSink.java index c2e7dc7e48..60b6943725 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioDatagramPipelineSink.java +++ b/src/main/java/io/netty/channel/socket/nio/NioDatagramPipelineSink.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioDatagramWorker.java b/src/main/java/io/netty/channel/socket/nio/NioDatagramWorker.java index 4a12ddaad5..4eb550cbb5 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioDatagramWorker.java +++ b/src/main/java/io/netty/channel/socket/nio/NioDatagramWorker.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioProviderMetadata.java b/src/main/java/io/netty/channel/socket/nio/NioProviderMetadata.java index c8bc99799e..8b422b42f3 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioProviderMetadata.java +++ b/src/main/java/io/netty/channel/socket/nio/NioProviderMetadata.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannel.java b/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannel.java index 9d9ab1af7f..8358017edd 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannel.java +++ b/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannelFactory.java b/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannelFactory.java index 3beeed3b08..5715f5a974 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannelFactory.java +++ b/src/main/java/io/netty/channel/socket/nio/NioServerSocketChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioServerSocketPipelineSink.java b/src/main/java/io/netty/channel/socket/nio/NioServerSocketPipelineSink.java index 25573d2cf4..37767fe999 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioServerSocketPipelineSink.java +++ b/src/main/java/io/netty/channel/socket/nio/NioServerSocketPipelineSink.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java b/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java index b5efa44e3e..57c534b0f7 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java +++ b/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioSocketChannelConfig.java b/src/main/java/io/netty/channel/socket/nio/NioSocketChannelConfig.java index d08b4caf51..e949db6293 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioSocketChannelConfig.java +++ b/src/main/java/io/netty/channel/socket/nio/NioSocketChannelConfig.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/NioWorker.java b/src/main/java/io/netty/channel/socket/nio/NioWorker.java index 66dcabc466..33caf4cb3f 100644 --- a/src/main/java/io/netty/channel/socket/nio/NioWorker.java +++ b/src/main/java/io/netty/channel/socket/nio/NioWorker.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/SelectorUtil.java b/src/main/java/io/netty/channel/socket/nio/SelectorUtil.java index d8f0afbc24..4e3570fd12 100644 --- a/src/main/java/io/netty/channel/socket/nio/SelectorUtil.java +++ b/src/main/java/io/netty/channel/socket/nio/SelectorUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/SocketReceiveBufferPool.java b/src/main/java/io/netty/channel/socket/nio/SocketReceiveBufferPool.java index 511ce8a6af..7385eb7457 100644 --- a/src/main/java/io/netty/channel/socket/nio/SocketReceiveBufferPool.java +++ b/src/main/java/io/netty/channel/socket/nio/SocketReceiveBufferPool.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/SocketSendBufferPool.java b/src/main/java/io/netty/channel/socket/nio/SocketSendBufferPool.java index 528d8acd4c..5b03846ec7 100644 --- a/src/main/java/io/netty/channel/socket/nio/SocketSendBufferPool.java +++ b/src/main/java/io/netty/channel/socket/nio/SocketSendBufferPool.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/nio/package-info.java b/src/main/java/io/netty/channel/socket/nio/package-info.java index 771b88aeb3..cc1ff1e7b5 100644 --- a/src/main/java/io/netty/channel/socket/nio/package-info.java +++ b/src/main/java/io/netty/channel/socket/nio/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioAcceptedSocketChannel.java b/src/main/java/io/netty/channel/socket/oio/OioAcceptedSocketChannel.java index 09532789ae..5bd4c6174c 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioAcceptedSocketChannel.java +++ b/src/main/java/io/netty/channel/socket/oio/OioAcceptedSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioClientSocketChannel.java b/src/main/java/io/netty/channel/socket/oio/OioClientSocketChannel.java index bb9111eb2b..02a0b32712 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioClientSocketChannel.java +++ b/src/main/java/io/netty/channel/socket/oio/OioClientSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioClientSocketChannelFactory.java b/src/main/java/io/netty/channel/socket/oio/OioClientSocketChannelFactory.java index a45ea86ad4..31e6c3a2f8 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioClientSocketChannelFactory.java +++ b/src/main/java/io/netty/channel/socket/oio/OioClientSocketChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioClientSocketPipelineSink.java b/src/main/java/io/netty/channel/socket/oio/OioClientSocketPipelineSink.java index efcac13721..43851b3a8c 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioClientSocketPipelineSink.java +++ b/src/main/java/io/netty/channel/socket/oio/OioClientSocketPipelineSink.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioDatagramChannel.java b/src/main/java/io/netty/channel/socket/oio/OioDatagramChannel.java index a11a7bd267..140e5fa15c 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioDatagramChannel.java +++ b/src/main/java/io/netty/channel/socket/oio/OioDatagramChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioDatagramChannelFactory.java b/src/main/java/io/netty/channel/socket/oio/OioDatagramChannelFactory.java index 651ba51cb0..8eccc9b989 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioDatagramChannelFactory.java +++ b/src/main/java/io/netty/channel/socket/oio/OioDatagramChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioDatagramPipelineSink.java b/src/main/java/io/netty/channel/socket/oio/OioDatagramPipelineSink.java index da72c2d93c..5c2a9e4aae 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioDatagramPipelineSink.java +++ b/src/main/java/io/netty/channel/socket/oio/OioDatagramPipelineSink.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioDatagramWorker.java b/src/main/java/io/netty/channel/socket/oio/OioDatagramWorker.java index 90edb2eaaf..78f25b474a 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioDatagramWorker.java +++ b/src/main/java/io/netty/channel/socket/oio/OioDatagramWorker.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioServerSocketChannel.java b/src/main/java/io/netty/channel/socket/oio/OioServerSocketChannel.java index b7853313e1..d3b725948f 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioServerSocketChannel.java +++ b/src/main/java/io/netty/channel/socket/oio/OioServerSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioServerSocketChannelFactory.java b/src/main/java/io/netty/channel/socket/oio/OioServerSocketChannelFactory.java index 1975a54233..83124407a0 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioServerSocketChannelFactory.java +++ b/src/main/java/io/netty/channel/socket/oio/OioServerSocketChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioServerSocketPipelineSink.java b/src/main/java/io/netty/channel/socket/oio/OioServerSocketPipelineSink.java index 129b56f056..be1d567266 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioServerSocketPipelineSink.java +++ b/src/main/java/io/netty/channel/socket/oio/OioServerSocketPipelineSink.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioSocketChannel.java b/src/main/java/io/netty/channel/socket/oio/OioSocketChannel.java index 0e8b46b8e2..29d7178ebb 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioSocketChannel.java +++ b/src/main/java/io/netty/channel/socket/oio/OioSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/OioWorker.java b/src/main/java/io/netty/channel/socket/oio/OioWorker.java index 1956f4f9ac..8135f3e1ab 100644 --- a/src/main/java/io/netty/channel/socket/oio/OioWorker.java +++ b/src/main/java/io/netty/channel/socket/oio/OioWorker.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/oio/package-info.java b/src/main/java/io/netty/channel/socket/oio/package-info.java index 0c424f352d..08940e1a53 100644 --- a/src/main/java/io/netty/channel/socket/oio/package-info.java +++ b/src/main/java/io/netty/channel/socket/oio/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/channel/socket/package-info.java b/src/main/java/io/netty/channel/socket/package-info.java index 583c76fb1a..8683cca309 100644 --- a/src/main/java/io/netty/channel/socket/package-info.java +++ b/src/main/java/io/netty/channel/socket/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/container/microcontainer/NettyLoggerConfigurator.java b/src/main/java/io/netty/container/microcontainer/NettyLoggerConfigurator.java index c8c6675bd4..e06f91c7b8 100644 --- a/src/main/java/io/netty/container/microcontainer/NettyLoggerConfigurator.java +++ b/src/main/java/io/netty/container/microcontainer/NettyLoggerConfigurator.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/container/microcontainer/package-info.java b/src/main/java/io/netty/container/microcontainer/package-info.java index 079cbffb12..485a26f619 100644 --- a/src/main/java/io/netty/container/microcontainer/package-info.java +++ b/src/main/java/io/netty/container/microcontainer/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/container/osgi/NettyBundleActivator.java b/src/main/java/io/netty/container/osgi/NettyBundleActivator.java index 4b9ace4352..8b2f66fd3a 100644 --- a/src/main/java/io/netty/container/osgi/NettyBundleActivator.java +++ b/src/main/java/io/netty/container/osgi/NettyBundleActivator.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/container/osgi/package-info.java b/src/main/java/io/netty/container/osgi/package-info.java index 851ddb9736..f146965fa3 100644 --- a/src/main/java/io/netty/container/osgi/package-info.java +++ b/src/main/java/io/netty/container/osgi/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/container/spring/NettyLoggerConfigurator.java b/src/main/java/io/netty/container/spring/NettyLoggerConfigurator.java index 78d075125b..295048a76e 100644 --- a/src/main/java/io/netty/container/spring/NettyLoggerConfigurator.java +++ b/src/main/java/io/netty/container/spring/NettyLoggerConfigurator.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/container/spring/package-info.java b/src/main/java/io/netty/container/spring/package-info.java index 38f7e3d595..42a55f3152 100644 --- a/src/main/java/io/netty/container/spring/package-info.java +++ b/src/main/java/io/netty/container/spring/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/discard/DiscardClient.java b/src/main/java/io/netty/example/discard/DiscardClient.java index c87cf3fc0f..308d671000 100644 --- a/src/main/java/io/netty/example/discard/DiscardClient.java +++ b/src/main/java/io/netty/example/discard/DiscardClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/discard/DiscardClientHandler.java b/src/main/java/io/netty/example/discard/DiscardClientHandler.java index 82e7d8a22f..e8cb15de24 100644 --- a/src/main/java/io/netty/example/discard/DiscardClientHandler.java +++ b/src/main/java/io/netty/example/discard/DiscardClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/discard/DiscardServer.java b/src/main/java/io/netty/example/discard/DiscardServer.java index 095c2f307f..67c6373705 100644 --- a/src/main/java/io/netty/example/discard/DiscardServer.java +++ b/src/main/java/io/netty/example/discard/DiscardServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/discard/DiscardServerHandler.java b/src/main/java/io/netty/example/discard/DiscardServerHandler.java index 6817a34767..e87f8e398c 100644 --- a/src/main/java/io/netty/example/discard/DiscardServerHandler.java +++ b/src/main/java/io/netty/example/discard/DiscardServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/echo/EchoClient.java b/src/main/java/io/netty/example/echo/EchoClient.java index 92daf5fe3a..8a9bac8e4f 100644 --- a/src/main/java/io/netty/example/echo/EchoClient.java +++ b/src/main/java/io/netty/example/echo/EchoClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/echo/EchoClientHandler.java b/src/main/java/io/netty/example/echo/EchoClientHandler.java index e9fe7514ea..bde22f5304 100644 --- a/src/main/java/io/netty/example/echo/EchoClientHandler.java +++ b/src/main/java/io/netty/example/echo/EchoClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/echo/EchoServer.java b/src/main/java/io/netty/example/echo/EchoServer.java index 9816833477..51c431c234 100644 --- a/src/main/java/io/netty/example/echo/EchoServer.java +++ b/src/main/java/io/netty/example/echo/EchoServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/echo/EchoServerHandler.java b/src/main/java/io/netty/example/echo/EchoServerHandler.java index ae34a1e4f5..e974679e02 100644 --- a/src/main/java/io/netty/example/echo/EchoServerHandler.java +++ b/src/main/java/io/netty/example/echo/EchoServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/factorial/BigIntegerDecoder.java b/src/main/java/io/netty/example/factorial/BigIntegerDecoder.java index 9af2018238..872a74b6f1 100644 --- a/src/main/java/io/netty/example/factorial/BigIntegerDecoder.java +++ b/src/main/java/io/netty/example/factorial/BigIntegerDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/factorial/FactorialClient.java b/src/main/java/io/netty/example/factorial/FactorialClient.java index 58b5e44feb..246916fed5 100644 --- a/src/main/java/io/netty/example/factorial/FactorialClient.java +++ b/src/main/java/io/netty/example/factorial/FactorialClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/factorial/FactorialClientHandler.java b/src/main/java/io/netty/example/factorial/FactorialClientHandler.java index 8975ce00e6..f6095bd677 100644 --- a/src/main/java/io/netty/example/factorial/FactorialClientHandler.java +++ b/src/main/java/io/netty/example/factorial/FactorialClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/factorial/FactorialClientPipelineFactory.java b/src/main/java/io/netty/example/factorial/FactorialClientPipelineFactory.java index 9fb59afb96..f57f74e703 100644 --- a/src/main/java/io/netty/example/factorial/FactorialClientPipelineFactory.java +++ b/src/main/java/io/netty/example/factorial/FactorialClientPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/factorial/FactorialServer.java b/src/main/java/io/netty/example/factorial/FactorialServer.java index 411c66e774..f102191b96 100644 --- a/src/main/java/io/netty/example/factorial/FactorialServer.java +++ b/src/main/java/io/netty/example/factorial/FactorialServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/factorial/FactorialServerHandler.java b/src/main/java/io/netty/example/factorial/FactorialServerHandler.java index c410497c4a..b02e301eae 100644 --- a/src/main/java/io/netty/example/factorial/FactorialServerHandler.java +++ b/src/main/java/io/netty/example/factorial/FactorialServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/factorial/FactorialServerPipelineFactory.java b/src/main/java/io/netty/example/factorial/FactorialServerPipelineFactory.java index b3e322a28a..6a1d6036a9 100644 --- a/src/main/java/io/netty/example/factorial/FactorialServerPipelineFactory.java +++ b/src/main/java/io/netty/example/factorial/FactorialServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/factorial/NumberEncoder.java b/src/main/java/io/netty/example/factorial/NumberEncoder.java index 4d4abff93a..cb5f4494ce 100644 --- a/src/main/java/io/netty/example/factorial/NumberEncoder.java +++ b/src/main/java/io/netty/example/factorial/NumberEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/file/HttpStaticFileServer.java b/src/main/java/io/netty/example/http/file/HttpStaticFileServer.java index b8f9394221..78cf58523a 100644 --- a/src/main/java/io/netty/example/http/file/HttpStaticFileServer.java +++ b/src/main/java/io/netty/example/http/file/HttpStaticFileServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/file/HttpStaticFileServerHandler.java b/src/main/java/io/netty/example/http/file/HttpStaticFileServerHandler.java index d7fa5add57..037e488b3f 100644 --- a/src/main/java/io/netty/example/http/file/HttpStaticFileServerHandler.java +++ b/src/main/java/io/netty/example/http/file/HttpStaticFileServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/file/HttpStaticFileServerPipelineFactory.java b/src/main/java/io/netty/example/http/file/HttpStaticFileServerPipelineFactory.java index 4a6a24775e..566e622ff9 100644 --- a/src/main/java/io/netty/example/http/file/HttpStaticFileServerPipelineFactory.java +++ b/src/main/java/io/netty/example/http/file/HttpStaticFileServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/snoop/HttpClient.java b/src/main/java/io/netty/example/http/snoop/HttpClient.java index 53d6b9c576..1a665e02c5 100644 --- a/src/main/java/io/netty/example/http/snoop/HttpClient.java +++ b/src/main/java/io/netty/example/http/snoop/HttpClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/snoop/HttpClientPipelineFactory.java b/src/main/java/io/netty/example/http/snoop/HttpClientPipelineFactory.java index f5758c6fb0..eb98ed5f53 100644 --- a/src/main/java/io/netty/example/http/snoop/HttpClientPipelineFactory.java +++ b/src/main/java/io/netty/example/http/snoop/HttpClientPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/snoop/HttpRequestHandler.java b/src/main/java/io/netty/example/http/snoop/HttpRequestHandler.java index e444ebab3b..bbde904733 100644 --- a/src/main/java/io/netty/example/http/snoop/HttpRequestHandler.java +++ b/src/main/java/io/netty/example/http/snoop/HttpRequestHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/snoop/HttpResponseHandler.java b/src/main/java/io/netty/example/http/snoop/HttpResponseHandler.java index ca0631a527..1feef4fa0f 100644 --- a/src/main/java/io/netty/example/http/snoop/HttpResponseHandler.java +++ b/src/main/java/io/netty/example/http/snoop/HttpResponseHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/snoop/HttpServer.java b/src/main/java/io/netty/example/http/snoop/HttpServer.java index 5ffed862cb..e3595b7234 100644 --- a/src/main/java/io/netty/example/http/snoop/HttpServer.java +++ b/src/main/java/io/netty/example/http/snoop/HttpServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/snoop/HttpServerPipelineFactory.java b/src/main/java/io/netty/example/http/snoop/HttpServerPipelineFactory.java index 934e2d31b6..bbeb1424a2 100644 --- a/src/main/java/io/netty/example/http/snoop/HttpServerPipelineFactory.java +++ b/src/main/java/io/netty/example/http/snoop/HttpServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/upload/HttpClient.java b/src/main/java/io/netty/example/http/upload/HttpClient.java index f3893002a6..b893113bef 100644 --- a/src/main/java/io/netty/example/http/upload/HttpClient.java +++ b/src/main/java/io/netty/example/http/upload/HttpClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/upload/HttpClientPipelineFactory.java b/src/main/java/io/netty/example/http/upload/HttpClientPipelineFactory.java index 9a0c4aad39..b7db7f8334 100644 --- a/src/main/java/io/netty/example/http/upload/HttpClientPipelineFactory.java +++ b/src/main/java/io/netty/example/http/upload/HttpClientPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/upload/HttpRequestHandler.java b/src/main/java/io/netty/example/http/upload/HttpRequestHandler.java index f6e0b529e2..974be7f05d 100644 --- a/src/main/java/io/netty/example/http/upload/HttpRequestHandler.java +++ b/src/main/java/io/netty/example/http/upload/HttpRequestHandler.java @@ -1,17 +1,17 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 (the - * "License"); you may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the - * License for the specific language governing permissions and limitations under - * the License. + * License for the specific language governing permissions and limitations + * under the License. */ package io.netty.example.http.upload; diff --git a/src/main/java/io/netty/example/http/upload/HttpResponseHandler.java b/src/main/java/io/netty/example/http/upload/HttpResponseHandler.java index 822f1ed182..aecfa869ab 100644 --- a/src/main/java/io/netty/example/http/upload/HttpResponseHandler.java +++ b/src/main/java/io/netty/example/http/upload/HttpResponseHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/upload/HttpServer.java b/src/main/java/io/netty/example/http/upload/HttpServer.java index c440ebfbfc..00f5fdf6c6 100644 --- a/src/main/java/io/netty/example/http/upload/HttpServer.java +++ b/src/main/java/io/netty/example/http/upload/HttpServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/upload/HttpServerPipelineFactory.java b/src/main/java/io/netty/example/http/upload/HttpServerPipelineFactory.java index ddfbcb7366..b330298636 100644 --- a/src/main/java/io/netty/example/http/upload/HttpServerPipelineFactory.java +++ b/src/main/java/io/netty/example/http/upload/HttpServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocket/WebSocketServer.java b/src/main/java/io/netty/example/http/websocket/WebSocketServer.java index 65188052a6..269675e426 100644 --- a/src/main/java/io/netty/example/http/websocket/WebSocketServer.java +++ b/src/main/java/io/netty/example/http/websocket/WebSocketServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocket/WebSocketServerHandler.java b/src/main/java/io/netty/example/http/websocket/WebSocketServerHandler.java index 89c809f787..bce5af9e76 100644 --- a/src/main/java/io/netty/example/http/websocket/WebSocketServerHandler.java +++ b/src/main/java/io/netty/example/http/websocket/WebSocketServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocket/WebSocketServerIndexPage.java b/src/main/java/io/netty/example/http/websocket/WebSocketServerIndexPage.java index a34f66bdb6..e883120ef2 100644 --- a/src/main/java/io/netty/example/http/websocket/WebSocketServerIndexPage.java +++ b/src/main/java/io/netty/example/http/websocket/WebSocketServerIndexPage.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocket/WebSocketServerPipelineFactory.java b/src/main/java/io/netty/example/http/websocket/WebSocketServerPipelineFactory.java index 5413b87953..62531403c5 100644 --- a/src/main/java/io/netty/example/http/websocket/WebSocketServerPipelineFactory.java +++ b/src/main/java/io/netty/example/http/websocket/WebSocketServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServer.java b/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServer.java index bcdc6acb31..a6648cd56a 100644 --- a/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServer.java +++ b/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServerHandler.java b/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServerHandler.java index a1611434cf..db963be59b 100644 --- a/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServerHandler.java +++ b/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServerPipelineFactory.java b/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServerPipelineFactory.java index 77b5ec9c1b..ff2ffa6ebf 100644 --- a/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServerPipelineFactory.java +++ b/src/main/java/io/netty/example/http/websocketx/autobahn/WebSocketServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/autobahn/package-info.java b/src/main/java/io/netty/example/http/websocketx/autobahn/package-info.java index a1e262fa4d..f78f6ae5ef 100644 --- a/src/main/java/io/netty/example/http/websocketx/autobahn/package-info.java +++ b/src/main/java/io/netty/example/http/websocketx/autobahn/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/client/App.java b/src/main/java/io/netty/example/http/websocketx/client/App.java index 84b16d6874..ebba304630 100644 --- a/src/main/java/io/netty/example/http/websocketx/client/App.java +++ b/src/main/java/io/netty/example/http/websocketx/client/App.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/client/WebSocketHttpResponseDecoder.java b/src/main/java/io/netty/example/http/websocketx/client/WebSocketHttpResponseDecoder.java index 4d1efeae6b..434f98641f 100644 --- a/src/main/java/io/netty/example/http/websocketx/client/WebSocketHttpResponseDecoder.java +++ b/src/main/java/io/netty/example/http/websocketx/client/WebSocketHttpResponseDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/client/package-info.java b/src/main/java/io/netty/example/http/websocketx/client/package-info.java index d49212803b..b903874eaf 100644 --- a/src/main/java/io/netty/example/http/websocketx/client/package-info.java +++ b/src/main/java/io/netty/example/http/websocketx/client/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/server/WebSocketServer.java b/src/main/java/io/netty/example/http/websocketx/server/WebSocketServer.java index 7ccb69156d..21547883da 100644 --- a/src/main/java/io/netty/example/http/websocketx/server/WebSocketServer.java +++ b/src/main/java/io/netty/example/http/websocketx/server/WebSocketServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerHandler.java b/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerHandler.java index d86bba34c1..328d3585d7 100644 --- a/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerHandler.java +++ b/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerIndexPage.java b/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerIndexPage.java index 2a45750529..2587e6a19d 100644 --- a/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerIndexPage.java +++ b/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerIndexPage.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerPipelineFactory.java b/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerPipelineFactory.java index bc9ecbfcdf..1232bda3fb 100644 --- a/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerPipelineFactory.java +++ b/src/main/java/io/netty/example/http/websocketx/server/WebSocketServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/server/package-info.java b/src/main/java/io/netty/example/http/websocketx/server/package-info.java index 8d9ab6f096..5feb48a243 100644 --- a/src/main/java/io/netty/example/http/websocketx/server/package-info.java +++ b/src/main/java/io/netty/example/http/websocketx/server/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServer.java b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServer.java index 9caf904ba0..f5bede15d1 100644 --- a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServer.java +++ b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerHandler.java b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerHandler.java index 6a544d710f..ca4a61b7e2 100644 --- a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerHandler.java +++ b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerIndexPage.java b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerIndexPage.java index 465de92840..7c1948394c 100644 --- a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerIndexPage.java +++ b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerIndexPage.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerPipelineFactory.java b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerPipelineFactory.java index 655b227fa1..b80ae91c16 100644 --- a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerPipelineFactory.java +++ b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerSslContext.java b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerSslContext.java index 3110926eb3..74658311ab 100644 --- a/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerSslContext.java +++ b/src/main/java/io/netty/example/http/websocketx/sslserver/WebSocketSslServerSslContext.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/http/websocketx/sslserver/package-info.java b/src/main/java/io/netty/example/http/websocketx/sslserver/package-info.java index 477cdd67ae..f7865b5cae 100644 --- a/src/main/java/io/netty/example/http/websocketx/sslserver/package-info.java +++ b/src/main/java/io/netty/example/http/websocketx/sslserver/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/iostream/IOStream.java b/src/main/java/io/netty/example/iostream/IOStream.java index df7693a1be..487a0a010f 100755 --- a/src/main/java/io/netty/example/iostream/IOStream.java +++ b/src/main/java/io/netty/example/iostream/IOStream.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/local/LocalExample.java b/src/main/java/io/netty/example/local/LocalExample.java index c01253e437..48358eaf55 100644 --- a/src/main/java/io/netty/example/local/LocalExample.java +++ b/src/main/java/io/netty/example/local/LocalExample.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/local/LocalExampleMultthreaded.java b/src/main/java/io/netty/example/local/LocalExampleMultthreaded.java index 6abfe3e6b4..77e5103b93 100644 --- a/src/main/java/io/netty/example/local/LocalExampleMultthreaded.java +++ b/src/main/java/io/netty/example/local/LocalExampleMultthreaded.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/local/LocalServerPipelineFactory.java b/src/main/java/io/netty/example/local/LocalServerPipelineFactory.java index 82535efb9f..afa536820e 100644 --- a/src/main/java/io/netty/example/local/LocalServerPipelineFactory.java +++ b/src/main/java/io/netty/example/local/LocalServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/localtime/LocalTimeClient.java b/src/main/java/io/netty/example/localtime/LocalTimeClient.java index 5e2390e897..58ae89548c 100644 --- a/src/main/java/io/netty/example/localtime/LocalTimeClient.java +++ b/src/main/java/io/netty/example/localtime/LocalTimeClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/localtime/LocalTimeClientHandler.java b/src/main/java/io/netty/example/localtime/LocalTimeClientHandler.java index 6a0f0db31e..018b7394bb 100644 --- a/src/main/java/io/netty/example/localtime/LocalTimeClientHandler.java +++ b/src/main/java/io/netty/example/localtime/LocalTimeClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/localtime/LocalTimeClientPipelineFactory.java b/src/main/java/io/netty/example/localtime/LocalTimeClientPipelineFactory.java index e14a597a87..33d442a26a 100644 --- a/src/main/java/io/netty/example/localtime/LocalTimeClientPipelineFactory.java +++ b/src/main/java/io/netty/example/localtime/LocalTimeClientPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/localtime/LocalTimeProtocol.java b/src/main/java/io/netty/example/localtime/LocalTimeProtocol.java index d49c11c3a8..14d8ce6b8c 100644 --- a/src/main/java/io/netty/example/localtime/LocalTimeProtocol.java +++ b/src/main/java/io/netty/example/localtime/LocalTimeProtocol.java @@ -1,3 +1,19 @@ +/* + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + */ + // Generated by the protocol buffer compiler. DO NOT EDIT! // source: src/main/java/io/netty/example/localtime/LocalTimeProtocol.proto diff --git a/src/main/java/io/netty/example/localtime/LocalTimeServer.java b/src/main/java/io/netty/example/localtime/LocalTimeServer.java index 0598ef2564..168d5b3a11 100644 --- a/src/main/java/io/netty/example/localtime/LocalTimeServer.java +++ b/src/main/java/io/netty/example/localtime/LocalTimeServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/localtime/LocalTimeServerHandler.java b/src/main/java/io/netty/example/localtime/LocalTimeServerHandler.java index c9020002f4..7bb8a4a246 100644 --- a/src/main/java/io/netty/example/localtime/LocalTimeServerHandler.java +++ b/src/main/java/io/netty/example/localtime/LocalTimeServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/localtime/LocalTimeServerPipelineFactory.java b/src/main/java/io/netty/example/localtime/LocalTimeServerPipelineFactory.java index d6c995f199..62bbb2dacc 100644 --- a/src/main/java/io/netty/example/localtime/LocalTimeServerPipelineFactory.java +++ b/src/main/java/io/netty/example/localtime/LocalTimeServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/objectecho/ObjectEchoClient.java b/src/main/java/io/netty/example/objectecho/ObjectEchoClient.java index daa947893b..dc36e720c7 100644 --- a/src/main/java/io/netty/example/objectecho/ObjectEchoClient.java +++ b/src/main/java/io/netty/example/objectecho/ObjectEchoClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/objectecho/ObjectEchoClientHandler.java b/src/main/java/io/netty/example/objectecho/ObjectEchoClientHandler.java index 09e00a3f60..7dec8ae562 100644 --- a/src/main/java/io/netty/example/objectecho/ObjectEchoClientHandler.java +++ b/src/main/java/io/netty/example/objectecho/ObjectEchoClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/objectecho/ObjectEchoServer.java b/src/main/java/io/netty/example/objectecho/ObjectEchoServer.java index ef4e1d26fb..c1915b9180 100644 --- a/src/main/java/io/netty/example/objectecho/ObjectEchoServer.java +++ b/src/main/java/io/netty/example/objectecho/ObjectEchoServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/objectecho/ObjectEchoServerHandler.java b/src/main/java/io/netty/example/objectecho/ObjectEchoServerHandler.java index fec87cf0d4..a7fc2a4d9b 100644 --- a/src/main/java/io/netty/example/objectecho/ObjectEchoServerHandler.java +++ b/src/main/java/io/netty/example/objectecho/ObjectEchoServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/portunification/PortUnificationServer.java b/src/main/java/io/netty/example/portunification/PortUnificationServer.java index 6a277f9f2a..093b6c6214 100644 --- a/src/main/java/io/netty/example/portunification/PortUnificationServer.java +++ b/src/main/java/io/netty/example/portunification/PortUnificationServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/portunification/PortUnificationServerHandler.java b/src/main/java/io/netty/example/portunification/PortUnificationServerHandler.java index 59ea7b10bd..b18fba49e9 100644 --- a/src/main/java/io/netty/example/portunification/PortUnificationServerHandler.java +++ b/src/main/java/io/netty/example/portunification/PortUnificationServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/proxy/HexDumpProxy.java b/src/main/java/io/netty/example/proxy/HexDumpProxy.java index e6830dfa75..06692b5360 100644 --- a/src/main/java/io/netty/example/proxy/HexDumpProxy.java +++ b/src/main/java/io/netty/example/proxy/HexDumpProxy.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/proxy/HexDumpProxyInboundHandler.java b/src/main/java/io/netty/example/proxy/HexDumpProxyInboundHandler.java index 4c8403d3b7..d934ca98e7 100644 --- a/src/main/java/io/netty/example/proxy/HexDumpProxyInboundHandler.java +++ b/src/main/java/io/netty/example/proxy/HexDumpProxyInboundHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/proxy/HexDumpProxyPipelineFactory.java b/src/main/java/io/netty/example/proxy/HexDumpProxyPipelineFactory.java index 87863027a6..935f02cd64 100644 --- a/src/main/java/io/netty/example/proxy/HexDumpProxyPipelineFactory.java +++ b/src/main/java/io/netty/example/proxy/HexDumpProxyPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/qotm/QuoteOfTheMomentClient.java b/src/main/java/io/netty/example/qotm/QuoteOfTheMomentClient.java index ae89761ef0..47bd87beca 100644 --- a/src/main/java/io/netty/example/qotm/QuoteOfTheMomentClient.java +++ b/src/main/java/io/netty/example/qotm/QuoteOfTheMomentClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/qotm/QuoteOfTheMomentClientHandler.java b/src/main/java/io/netty/example/qotm/QuoteOfTheMomentClientHandler.java index 127018d892..a2f8a41036 100644 --- a/src/main/java/io/netty/example/qotm/QuoteOfTheMomentClientHandler.java +++ b/src/main/java/io/netty/example/qotm/QuoteOfTheMomentClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/qotm/QuoteOfTheMomentServer.java b/src/main/java/io/netty/example/qotm/QuoteOfTheMomentServer.java index d9507d2c86..74cade2f00 100644 --- a/src/main/java/io/netty/example/qotm/QuoteOfTheMomentServer.java +++ b/src/main/java/io/netty/example/qotm/QuoteOfTheMomentServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/qotm/QuoteOfTheMomentServerHandler.java b/src/main/java/io/netty/example/qotm/QuoteOfTheMomentServerHandler.java index 9d4bcf60d4..9bd734b5a4 100644 --- a/src/main/java/io/netty/example/qotm/QuoteOfTheMomentServerHandler.java +++ b/src/main/java/io/netty/example/qotm/QuoteOfTheMomentServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatClient.java b/src/main/java/io/netty/example/securechat/SecureChatClient.java index a8b29baf9b..3d137f9d5d 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatClient.java +++ b/src/main/java/io/netty/example/securechat/SecureChatClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatClientHandler.java b/src/main/java/io/netty/example/securechat/SecureChatClientHandler.java index 965000e583..87af04e02f 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatClientHandler.java +++ b/src/main/java/io/netty/example/securechat/SecureChatClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatClientPipelineFactory.java b/src/main/java/io/netty/example/securechat/SecureChatClientPipelineFactory.java index e1a241cbbd..7aceadb0df 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatClientPipelineFactory.java +++ b/src/main/java/io/netty/example/securechat/SecureChatClientPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatKeyStore.java b/src/main/java/io/netty/example/securechat/SecureChatKeyStore.java index 3da9e747d0..8d5b96a361 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatKeyStore.java +++ b/src/main/java/io/netty/example/securechat/SecureChatKeyStore.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatServer.java b/src/main/java/io/netty/example/securechat/SecureChatServer.java index 672bdb252c..cce842afd7 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatServer.java +++ b/src/main/java/io/netty/example/securechat/SecureChatServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatServerHandler.java b/src/main/java/io/netty/example/securechat/SecureChatServerHandler.java index ae866bcc6d..a99b7db617 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatServerHandler.java +++ b/src/main/java/io/netty/example/securechat/SecureChatServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatServerPipelineFactory.java b/src/main/java/io/netty/example/securechat/SecureChatServerPipelineFactory.java index e256623d8b..6b951eeb36 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatServerPipelineFactory.java +++ b/src/main/java/io/netty/example/securechat/SecureChatServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatSslContextFactory.java b/src/main/java/io/netty/example/securechat/SecureChatSslContextFactory.java index de3fd25e2b..edd3c61758 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatSslContextFactory.java +++ b/src/main/java/io/netty/example/securechat/SecureChatSslContextFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/securechat/SecureChatTrustManagerFactory.java b/src/main/java/io/netty/example/securechat/SecureChatTrustManagerFactory.java index d31ea7a7ac..b978b51cce 100644 --- a/src/main/java/io/netty/example/securechat/SecureChatTrustManagerFactory.java +++ b/src/main/java/io/netty/example/securechat/SecureChatTrustManagerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/telnet/TelnetClient.java b/src/main/java/io/netty/example/telnet/TelnetClient.java index cd252ee42a..97dd175b55 100644 --- a/src/main/java/io/netty/example/telnet/TelnetClient.java +++ b/src/main/java/io/netty/example/telnet/TelnetClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/telnet/TelnetClientHandler.java b/src/main/java/io/netty/example/telnet/TelnetClientHandler.java index 816d3a68d8..78aa5d9f9c 100644 --- a/src/main/java/io/netty/example/telnet/TelnetClientHandler.java +++ b/src/main/java/io/netty/example/telnet/TelnetClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/telnet/TelnetClientPipelineFactory.java b/src/main/java/io/netty/example/telnet/TelnetClientPipelineFactory.java index a0540076a8..4009345dde 100644 --- a/src/main/java/io/netty/example/telnet/TelnetClientPipelineFactory.java +++ b/src/main/java/io/netty/example/telnet/TelnetClientPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/telnet/TelnetServer.java b/src/main/java/io/netty/example/telnet/TelnetServer.java index 5d1b9da6ca..633b88df5e 100644 --- a/src/main/java/io/netty/example/telnet/TelnetServer.java +++ b/src/main/java/io/netty/example/telnet/TelnetServer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/telnet/TelnetServerHandler.java b/src/main/java/io/netty/example/telnet/TelnetServerHandler.java index 1d09dbde1e..68cde962cc 100644 --- a/src/main/java/io/netty/example/telnet/TelnetServerHandler.java +++ b/src/main/java/io/netty/example/telnet/TelnetServerHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/telnet/TelnetServerPipelineFactory.java b/src/main/java/io/netty/example/telnet/TelnetServerPipelineFactory.java index 4e454920cb..9328ee3938 100644 --- a/src/main/java/io/netty/example/telnet/TelnetServerPipelineFactory.java +++ b/src/main/java/io/netty/example/telnet/TelnetServerPipelineFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/uptime/UptimeClient.java b/src/main/java/io/netty/example/uptime/UptimeClient.java index c450044d1f..d63b981278 100644 --- a/src/main/java/io/netty/example/uptime/UptimeClient.java +++ b/src/main/java/io/netty/example/uptime/UptimeClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/example/uptime/UptimeClientHandler.java b/src/main/java/io/netty/example/uptime/UptimeClientHandler.java index 8c7d966b37..f3fce5f542 100644 --- a/src/main/java/io/netty/example/uptime/UptimeClientHandler.java +++ b/src/main/java/io/netty/example/uptime/UptimeClientHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/base64/Base64.java b/src/main/java/io/netty/handler/codec/base64/Base64.java index 3dff862b49..64339345ee 100644 --- a/src/main/java/io/netty/handler/codec/base64/Base64.java +++ b/src/main/java/io/netty/handler/codec/base64/Base64.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/base64/Base64Decoder.java b/src/main/java/io/netty/handler/codec/base64/Base64Decoder.java index 4a3e8f0b81..523cfbb6d9 100644 --- a/src/main/java/io/netty/handler/codec/base64/Base64Decoder.java +++ b/src/main/java/io/netty/handler/codec/base64/Base64Decoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/base64/Base64Dialect.java b/src/main/java/io/netty/handler/codec/base64/Base64Dialect.java index 7330abb43d..07b6129960 100644 --- a/src/main/java/io/netty/handler/codec/base64/Base64Dialect.java +++ b/src/main/java/io/netty/handler/codec/base64/Base64Dialect.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/base64/Base64Encoder.java b/src/main/java/io/netty/handler/codec/base64/Base64Encoder.java index 3115e81161..b53917897a 100644 --- a/src/main/java/io/netty/handler/codec/base64/Base64Encoder.java +++ b/src/main/java/io/netty/handler/codec/base64/Base64Encoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/base64/package-info.java b/src/main/java/io/netty/handler/codec/base64/package-info.java index edf714207d..cf6af9951f 100644 --- a/src/main/java/io/netty/handler/codec/base64/package-info.java +++ b/src/main/java/io/netty/handler/codec/base64/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/bytes/ByteArrayDecoder.java b/src/main/java/io/netty/handler/codec/bytes/ByteArrayDecoder.java index 2c619bd6c6..bfd305297f 100644 --- a/src/main/java/io/netty/handler/codec/bytes/ByteArrayDecoder.java +++ b/src/main/java/io/netty/handler/codec/bytes/ByteArrayDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/bytes/ByteArrayEncoder.java b/src/main/java/io/netty/handler/codec/bytes/ByteArrayEncoder.java index c8950974fc..819ba39f7d 100644 --- a/src/main/java/io/netty/handler/codec/bytes/ByteArrayEncoder.java +++ b/src/main/java/io/netty/handler/codec/bytes/ByteArrayEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/bytes/package-info.java b/src/main/java/io/netty/handler/codec/bytes/package-info.java index b07b19ef0a..a61e3b5af1 100644 --- a/src/main/java/io/netty/handler/codec/bytes/package-info.java +++ b/src/main/java/io/netty/handler/codec/bytes/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/compression/CompressionException.java b/src/main/java/io/netty/handler/codec/compression/CompressionException.java index 76a2e80f8e..f010c403e6 100644 --- a/src/main/java/io/netty/handler/codec/compression/CompressionException.java +++ b/src/main/java/io/netty/handler/codec/compression/CompressionException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/compression/ZlibDecoder.java b/src/main/java/io/netty/handler/codec/compression/ZlibDecoder.java index 83ce913b80..1c89d42436 100644 --- a/src/main/java/io/netty/handler/codec/compression/ZlibDecoder.java +++ b/src/main/java/io/netty/handler/codec/compression/ZlibDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/compression/ZlibEncoder.java b/src/main/java/io/netty/handler/codec/compression/ZlibEncoder.java index dfcacbb6f8..960269536a 100644 --- a/src/main/java/io/netty/handler/codec/compression/ZlibEncoder.java +++ b/src/main/java/io/netty/handler/codec/compression/ZlibEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/compression/ZlibUtil.java b/src/main/java/io/netty/handler/codec/compression/ZlibUtil.java index f4ab195826..8444328a8a 100644 --- a/src/main/java/io/netty/handler/codec/compression/ZlibUtil.java +++ b/src/main/java/io/netty/handler/codec/compression/ZlibUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/compression/ZlibWrapper.java b/src/main/java/io/netty/handler/codec/compression/ZlibWrapper.java index 8115680e79..99e95afe50 100644 --- a/src/main/java/io/netty/handler/codec/compression/ZlibWrapper.java +++ b/src/main/java/io/netty/handler/codec/compression/ZlibWrapper.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/compression/package-info.java b/src/main/java/io/netty/handler/codec/compression/package-info.java index a519203a5f..a45cfdeb95 100644 --- a/src/main/java/io/netty/handler/codec/compression/package-info.java +++ b/src/main/java/io/netty/handler/codec/compression/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/AbstractCodecEmbedder.java b/src/main/java/io/netty/handler/codec/embedder/AbstractCodecEmbedder.java index 6fd93e0a30..4e85a1d01c 100644 --- a/src/main/java/io/netty/handler/codec/embedder/AbstractCodecEmbedder.java +++ b/src/main/java/io/netty/handler/codec/embedder/AbstractCodecEmbedder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/CodecEmbedder.java b/src/main/java/io/netty/handler/codec/embedder/CodecEmbedder.java index bb63a5c13e..f16f7a0177 100644 --- a/src/main/java/io/netty/handler/codec/embedder/CodecEmbedder.java +++ b/src/main/java/io/netty/handler/codec/embedder/CodecEmbedder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/CodecEmbedderException.java b/src/main/java/io/netty/handler/codec/embedder/CodecEmbedderException.java index 9dd21bf96d..f1d04d5d16 100644 --- a/src/main/java/io/netty/handler/codec/embedder/CodecEmbedderException.java +++ b/src/main/java/io/netty/handler/codec/embedder/CodecEmbedderException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/DecoderEmbedder.java b/src/main/java/io/netty/handler/codec/embedder/DecoderEmbedder.java index ec10624c84..8f47941447 100644 --- a/src/main/java/io/netty/handler/codec/embedder/DecoderEmbedder.java +++ b/src/main/java/io/netty/handler/codec/embedder/DecoderEmbedder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/EmbeddedChannel.java b/src/main/java/io/netty/handler/codec/embedder/EmbeddedChannel.java index 7a79f7f0e3..6998da6b01 100644 --- a/src/main/java/io/netty/handler/codec/embedder/EmbeddedChannel.java +++ b/src/main/java/io/netty/handler/codec/embedder/EmbeddedChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/EmbeddedChannelFactory.java b/src/main/java/io/netty/handler/codec/embedder/EmbeddedChannelFactory.java index b018c8ff11..c2bd56bbf9 100644 --- a/src/main/java/io/netty/handler/codec/embedder/EmbeddedChannelFactory.java +++ b/src/main/java/io/netty/handler/codec/embedder/EmbeddedChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/EmbeddedSocketAddress.java b/src/main/java/io/netty/handler/codec/embedder/EmbeddedSocketAddress.java index f380971df4..0147ba5b47 100644 --- a/src/main/java/io/netty/handler/codec/embedder/EmbeddedSocketAddress.java +++ b/src/main/java/io/netty/handler/codec/embedder/EmbeddedSocketAddress.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/EncoderEmbedder.java b/src/main/java/io/netty/handler/codec/embedder/EncoderEmbedder.java index a5e5cdb002..d4a5d856cd 100644 --- a/src/main/java/io/netty/handler/codec/embedder/EncoderEmbedder.java +++ b/src/main/java/io/netty/handler/codec/embedder/EncoderEmbedder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/embedder/package-info.java b/src/main/java/io/netty/handler/codec/embedder/package-info.java index adc00bec45..4f31e48e7d 100644 --- a/src/main/java/io/netty/handler/codec/embedder/package-info.java +++ b/src/main/java/io/netty/handler/codec/embedder/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/CorruptedFrameException.java b/src/main/java/io/netty/handler/codec/frame/CorruptedFrameException.java index e5c678fa03..cc6d96b0c4 100644 --- a/src/main/java/io/netty/handler/codec/frame/CorruptedFrameException.java +++ b/src/main/java/io/netty/handler/codec/frame/CorruptedFrameException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/DelimiterBasedFrameDecoder.java b/src/main/java/io/netty/handler/codec/frame/DelimiterBasedFrameDecoder.java index 5c9867419d..e701510bf5 100644 --- a/src/main/java/io/netty/handler/codec/frame/DelimiterBasedFrameDecoder.java +++ b/src/main/java/io/netty/handler/codec/frame/DelimiterBasedFrameDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/Delimiters.java b/src/main/java/io/netty/handler/codec/frame/Delimiters.java index e911d54dce..e00a059940 100644 --- a/src/main/java/io/netty/handler/codec/frame/Delimiters.java +++ b/src/main/java/io/netty/handler/codec/frame/Delimiters.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/FixedLengthFrameDecoder.java b/src/main/java/io/netty/handler/codec/frame/FixedLengthFrameDecoder.java index c2b6384770..d36519925c 100644 --- a/src/main/java/io/netty/handler/codec/frame/FixedLengthFrameDecoder.java +++ b/src/main/java/io/netty/handler/codec/frame/FixedLengthFrameDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/FrameDecoder.java b/src/main/java/io/netty/handler/codec/frame/FrameDecoder.java index cd61ded4ca..ee5e87dfbd 100644 --- a/src/main/java/io/netty/handler/codec/frame/FrameDecoder.java +++ b/src/main/java/io/netty/handler/codec/frame/FrameDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/LengthFieldBasedFrameDecoder.java b/src/main/java/io/netty/handler/codec/frame/LengthFieldBasedFrameDecoder.java index b81a415ac6..33d95675d9 100644 --- a/src/main/java/io/netty/handler/codec/frame/LengthFieldBasedFrameDecoder.java +++ b/src/main/java/io/netty/handler/codec/frame/LengthFieldBasedFrameDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/LengthFieldPrepender.java b/src/main/java/io/netty/handler/codec/frame/LengthFieldPrepender.java index bc5e1b426b..55c0c9e391 100644 --- a/src/main/java/io/netty/handler/codec/frame/LengthFieldPrepender.java +++ b/src/main/java/io/netty/handler/codec/frame/LengthFieldPrepender.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/TooLongFrameException.java b/src/main/java/io/netty/handler/codec/frame/TooLongFrameException.java index 3368e5f084..c1e7c6e644 100644 --- a/src/main/java/io/netty/handler/codec/frame/TooLongFrameException.java +++ b/src/main/java/io/netty/handler/codec/frame/TooLongFrameException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/frame/package-info.java b/src/main/java/io/netty/handler/codec/frame/package-info.java index 97f2afda4e..e09b779a79 100644 --- a/src/main/java/io/netty/handler/codec/frame/package-info.java +++ b/src/main/java/io/netty/handler/codec/frame/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/AbstractDiskHttpData.java b/src/main/java/io/netty/handler/codec/http/AbstractDiskHttpData.java index 29483cd174..e25bfaf81b 100644 --- a/src/main/java/io/netty/handler/codec/http/AbstractDiskHttpData.java +++ b/src/main/java/io/netty/handler/codec/http/AbstractDiskHttpData.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/AbstractHttpData.java b/src/main/java/io/netty/handler/codec/http/AbstractHttpData.java index b07dec0ea0..3d2b38c9e9 100644 --- a/src/main/java/io/netty/handler/codec/http/AbstractHttpData.java +++ b/src/main/java/io/netty/handler/codec/http/AbstractHttpData.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/AbstractMemoryHttpData.java b/src/main/java/io/netty/handler/codec/http/AbstractMemoryHttpData.java index 0570a0afec..7a324a257a 100644 --- a/src/main/java/io/netty/handler/codec/http/AbstractMemoryHttpData.java +++ b/src/main/java/io/netty/handler/codec/http/AbstractMemoryHttpData.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/Attribute.java b/src/main/java/io/netty/handler/codec/http/Attribute.java index e8e9acdf6c..a8b516b969 100644 --- a/src/main/java/io/netty/handler/codec/http/Attribute.java +++ b/src/main/java/io/netty/handler/codec/http/Attribute.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/CaseIgnoringComparator.java b/src/main/java/io/netty/handler/codec/http/CaseIgnoringComparator.java index d5a8b4ebb9..5235891dba 100644 --- a/src/main/java/io/netty/handler/codec/http/CaseIgnoringComparator.java +++ b/src/main/java/io/netty/handler/codec/http/CaseIgnoringComparator.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/Cookie.java b/src/main/java/io/netty/handler/codec/http/Cookie.java index d7752898d0..aac18e50e9 100644 --- a/src/main/java/io/netty/handler/codec/http/Cookie.java +++ b/src/main/java/io/netty/handler/codec/http/Cookie.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/CookieDecoder.java b/src/main/java/io/netty/handler/codec/http/CookieDecoder.java index d38f43d4fb..e6f772abd6 100644 --- a/src/main/java/io/netty/handler/codec/http/CookieDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/CookieDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/CookieEncoder.java b/src/main/java/io/netty/handler/codec/http/CookieEncoder.java index cf7cf0f295..845e5ac9e4 100644 --- a/src/main/java/io/netty/handler/codec/http/CookieEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/CookieEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/CookieHeaderNames.java b/src/main/java/io/netty/handler/codec/http/CookieHeaderNames.java index e3e1413fa5..ab5ed057a9 100644 --- a/src/main/java/io/netty/handler/codec/http/CookieHeaderNames.java +++ b/src/main/java/io/netty/handler/codec/http/CookieHeaderNames.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DefaultCookie.java b/src/main/java/io/netty/handler/codec/http/DefaultCookie.java index 8b05639087..d724406ed9 100644 --- a/src/main/java/io/netty/handler/codec/http/DefaultCookie.java +++ b/src/main/java/io/netty/handler/codec/http/DefaultCookie.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DefaultHttpChunk.java b/src/main/java/io/netty/handler/codec/http/DefaultHttpChunk.java index cab125625d..4da1124cb4 100644 --- a/src/main/java/io/netty/handler/codec/http/DefaultHttpChunk.java +++ b/src/main/java/io/netty/handler/codec/http/DefaultHttpChunk.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DefaultHttpChunkTrailer.java b/src/main/java/io/netty/handler/codec/http/DefaultHttpChunkTrailer.java index 604bb9f0b2..3b6a82df76 100644 --- a/src/main/java/io/netty/handler/codec/http/DefaultHttpChunkTrailer.java +++ b/src/main/java/io/netty/handler/codec/http/DefaultHttpChunkTrailer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DefaultHttpDataFactory.java b/src/main/java/io/netty/handler/codec/http/DefaultHttpDataFactory.java index bf95b94e50..ef6feabe45 100644 --- a/src/main/java/io/netty/handler/codec/http/DefaultHttpDataFactory.java +++ b/src/main/java/io/netty/handler/codec/http/DefaultHttpDataFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DefaultHttpMessage.java b/src/main/java/io/netty/handler/codec/http/DefaultHttpMessage.java index d6be43592c..71cc56d2c7 100644 --- a/src/main/java/io/netty/handler/codec/http/DefaultHttpMessage.java +++ b/src/main/java/io/netty/handler/codec/http/DefaultHttpMessage.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DefaultHttpRequest.java b/src/main/java/io/netty/handler/codec/http/DefaultHttpRequest.java index 566bb81477..fc7a52879f 100644 --- a/src/main/java/io/netty/handler/codec/http/DefaultHttpRequest.java +++ b/src/main/java/io/netty/handler/codec/http/DefaultHttpRequest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DefaultHttpResponse.java b/src/main/java/io/netty/handler/codec/http/DefaultHttpResponse.java index f880cc5ace..0fbaf0ca56 100644 --- a/src/main/java/io/netty/handler/codec/http/DefaultHttpResponse.java +++ b/src/main/java/io/netty/handler/codec/http/DefaultHttpResponse.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DiskAttribute.java b/src/main/java/io/netty/handler/codec/http/DiskAttribute.java index b49a9fd07b..e85e4caa9c 100644 --- a/src/main/java/io/netty/handler/codec/http/DiskAttribute.java +++ b/src/main/java/io/netty/handler/codec/http/DiskAttribute.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/DiskFileUpload.java b/src/main/java/io/netty/handler/codec/http/DiskFileUpload.java index 57e9266a72..938cd5b12c 100644 --- a/src/main/java/io/netty/handler/codec/http/DiskFileUpload.java +++ b/src/main/java/io/netty/handler/codec/http/DiskFileUpload.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/FileUpload.java b/src/main/java/io/netty/handler/codec/http/FileUpload.java index 6e1b7bbb66..ae428d4b70 100644 --- a/src/main/java/io/netty/handler/codec/http/FileUpload.java +++ b/src/main/java/io/netty/handler/codec/http/FileUpload.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpChunk.java b/src/main/java/io/netty/handler/codec/http/HttpChunk.java index 9010c66168..cb82d207ce 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpChunk.java +++ b/src/main/java/io/netty/handler/codec/http/HttpChunk.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpChunkAggregator.java b/src/main/java/io/netty/handler/codec/http/HttpChunkAggregator.java index b56ee45854..5b4f8ed680 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpChunkAggregator.java +++ b/src/main/java/io/netty/handler/codec/http/HttpChunkAggregator.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpChunkTrailer.java b/src/main/java/io/netty/handler/codec/http/HttpChunkTrailer.java index dac1a52dc4..e02e76d9f6 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpChunkTrailer.java +++ b/src/main/java/io/netty/handler/codec/http/HttpChunkTrailer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpClientCodec.java b/src/main/java/io/netty/handler/codec/http/HttpClientCodec.java index 20aa43aa5d..8049b79a90 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpClientCodec.java +++ b/src/main/java/io/netty/handler/codec/http/HttpClientCodec.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpCodecUtil.java b/src/main/java/io/netty/handler/codec/http/HttpCodecUtil.java index 0a2ce6888d..6652672bee 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpCodecUtil.java +++ b/src/main/java/io/netty/handler/codec/http/HttpCodecUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpContentCompressor.java b/src/main/java/io/netty/handler/codec/http/HttpContentCompressor.java index 6b426dcb27..d03dacc03c 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpContentCompressor.java +++ b/src/main/java/io/netty/handler/codec/http/HttpContentCompressor.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpContentDecoder.java b/src/main/java/io/netty/handler/codec/http/HttpContentDecoder.java index 28bb0e54d5..12253d0302 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpContentDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpContentDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpContentDecompressor.java b/src/main/java/io/netty/handler/codec/http/HttpContentDecompressor.java index f9aa7db766..3e96499a96 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpContentDecompressor.java +++ b/src/main/java/io/netty/handler/codec/http/HttpContentDecompressor.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpContentEncoder.java b/src/main/java/io/netty/handler/codec/http/HttpContentEncoder.java index 8d78f3414a..6cbdc7989f 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpContentEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpContentEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpData.java b/src/main/java/io/netty/handler/codec/http/HttpData.java index 1a6ee51b15..b9b7564fa5 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpData.java +++ b/src/main/java/io/netty/handler/codec/http/HttpData.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpDataFactory.java b/src/main/java/io/netty/handler/codec/http/HttpDataFactory.java index aded9ea1eb..678853d9fe 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpDataFactory.java +++ b/src/main/java/io/netty/handler/codec/http/HttpDataFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpHeaderDateFormat.java b/src/main/java/io/netty/handler/codec/http/HttpHeaderDateFormat.java index 4c24e2490a..4b7f0e3f19 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpHeaderDateFormat.java +++ b/src/main/java/io/netty/handler/codec/http/HttpHeaderDateFormat.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpHeaders.java b/src/main/java/io/netty/handler/codec/http/HttpHeaders.java index 283a254cc9..fc318957ef 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpHeaders.java +++ b/src/main/java/io/netty/handler/codec/http/HttpHeaders.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpMessage.java b/src/main/java/io/netty/handler/codec/http/HttpMessage.java index c369ae8032..e129f7a59c 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpMessage.java +++ b/src/main/java/io/netty/handler/codec/http/HttpMessage.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpMessageDecoder.java b/src/main/java/io/netty/handler/codec/http/HttpMessageDecoder.java index 7673b0f9aa..5059fba641 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpMessageDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpMessageDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpMessageEncoder.java b/src/main/java/io/netty/handler/codec/http/HttpMessageEncoder.java index b9955c5b7e..e92bb38869 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpMessageEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpMessageEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpMethod.java b/src/main/java/io/netty/handler/codec/http/HttpMethod.java index 914009731c..152ab57b32 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpMethod.java +++ b/src/main/java/io/netty/handler/codec/http/HttpMethod.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpPostBodyUtil.java b/src/main/java/io/netty/handler/codec/http/HttpPostBodyUtil.java index 78b8259e9e..c49cbcc488 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpPostBodyUtil.java +++ b/src/main/java/io/netty/handler/codec/http/HttpPostBodyUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpPostRequestDecoder.java b/src/main/java/io/netty/handler/codec/http/HttpPostRequestDecoder.java index 2c12c924a2..bcd4ba6f8d 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpPostRequestDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpPostRequestDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpPostRequestEncoder.java b/src/main/java/io/netty/handler/codec/http/HttpPostRequestEncoder.java index f3802b8d9d..6a038423aa 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpPostRequestEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpPostRequestEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpRequest.java b/src/main/java/io/netty/handler/codec/http/HttpRequest.java index f985730763..d021ab7cb8 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpRequest.java +++ b/src/main/java/io/netty/handler/codec/http/HttpRequest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpRequestDecoder.java b/src/main/java/io/netty/handler/codec/http/HttpRequestDecoder.java index fdbd377897..ff6897b450 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpRequestDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpRequestDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpRequestEncoder.java b/src/main/java/io/netty/handler/codec/http/HttpRequestEncoder.java index 75343890f9..ab5930991a 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpRequestEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpRequestEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpResponse.java b/src/main/java/io/netty/handler/codec/http/HttpResponse.java index 3b1dd13f13..3628f77f09 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpResponse.java +++ b/src/main/java/io/netty/handler/codec/http/HttpResponse.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpResponseDecoder.java b/src/main/java/io/netty/handler/codec/http/HttpResponseDecoder.java index 7e5298cb18..cabd4452de 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpResponseDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpResponseDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpResponseEncoder.java b/src/main/java/io/netty/handler/codec/http/HttpResponseEncoder.java index fb57840c29..ddaf35861c 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpResponseEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/HttpResponseEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpResponseStatus.java b/src/main/java/io/netty/handler/codec/http/HttpResponseStatus.java index bb52f14170..28009e792a 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpResponseStatus.java +++ b/src/main/java/io/netty/handler/codec/http/HttpResponseStatus.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpServerCodec.java b/src/main/java/io/netty/handler/codec/http/HttpServerCodec.java index 461e2bbebf..17519a220d 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpServerCodec.java +++ b/src/main/java/io/netty/handler/codec/http/HttpServerCodec.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/HttpVersion.java b/src/main/java/io/netty/handler/codec/http/HttpVersion.java index 68772563a3..1736f7462a 100644 --- a/src/main/java/io/netty/handler/codec/http/HttpVersion.java +++ b/src/main/java/io/netty/handler/codec/http/HttpVersion.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/InterfaceHttpData.java b/src/main/java/io/netty/handler/codec/http/InterfaceHttpData.java index ff9a3e8a51..992493bd02 100644 --- a/src/main/java/io/netty/handler/codec/http/InterfaceHttpData.java +++ b/src/main/java/io/netty/handler/codec/http/InterfaceHttpData.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/InternalAttribute.java b/src/main/java/io/netty/handler/codec/http/InternalAttribute.java index aa695ab485..29866789cc 100644 --- a/src/main/java/io/netty/handler/codec/http/InternalAttribute.java +++ b/src/main/java/io/netty/handler/codec/http/InternalAttribute.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/MemoryAttribute.java b/src/main/java/io/netty/handler/codec/http/MemoryAttribute.java index a7ed07486e..93881613e7 100644 --- a/src/main/java/io/netty/handler/codec/http/MemoryAttribute.java +++ b/src/main/java/io/netty/handler/codec/http/MemoryAttribute.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/MemoryFileUpload.java b/src/main/java/io/netty/handler/codec/http/MemoryFileUpload.java index 5b115179bf..f3f2509d81 100644 --- a/src/main/java/io/netty/handler/codec/http/MemoryFileUpload.java +++ b/src/main/java/io/netty/handler/codec/http/MemoryFileUpload.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/MixedAttribute.java b/src/main/java/io/netty/handler/codec/http/MixedAttribute.java index abcaca8fba..045a39c395 100644 --- a/src/main/java/io/netty/handler/codec/http/MixedAttribute.java +++ b/src/main/java/io/netty/handler/codec/http/MixedAttribute.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/MixedFileUpload.java b/src/main/java/io/netty/handler/codec/http/MixedFileUpload.java index ce50f57ea3..b98c9375f9 100644 --- a/src/main/java/io/netty/handler/codec/http/MixedFileUpload.java +++ b/src/main/java/io/netty/handler/codec/http/MixedFileUpload.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/QueryStringDecoder.java b/src/main/java/io/netty/handler/codec/http/QueryStringDecoder.java index 8ad51ed6eb..6c89639c0d 100644 --- a/src/main/java/io/netty/handler/codec/http/QueryStringDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/QueryStringDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/QueryStringEncoder.java b/src/main/java/io/netty/handler/codec/http/QueryStringEncoder.java index f3d51aa558..e96f6e6cdf 100644 --- a/src/main/java/io/netty/handler/codec/http/QueryStringEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/QueryStringEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/package-info.java b/src/main/java/io/netty/handler/codec/http/package-info.java index 9c245a3d02..55803485f9 100644 --- a/src/main/java/io/netty/handler/codec/http/package-info.java +++ b/src/main/java/io/netty/handler/codec/http/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocket/DefaultWebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocket/DefaultWebSocketFrame.java index b9d36fb85e..6205af6e3f 100644 --- a/src/main/java/io/netty/handler/codec/http/websocket/DefaultWebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocket/DefaultWebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrame.java index c2f9b29864..7b6f8d9296 100644 --- a/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrameDecoder.java b/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrameDecoder.java index 2cbbd33544..e6c3f10777 100644 --- a/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrameDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrameDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrameEncoder.java b/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrameEncoder.java index 857d55c22e..43c14c0bb5 100644 --- a/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrameEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/websocket/WebSocketFrameEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocket/package-info.java b/src/main/java/io/netty/handler/codec/http/websocket/package-info.java index a680614e72..32ae22c097 100644 --- a/src/main/java/io/netty/handler/codec/http/websocket/package-info.java +++ b/src/main/java/io/netty/handler/codec/http/websocket/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/BinaryWebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocketx/BinaryWebSocketFrame.java index 73ec5253e1..a05669647a 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/BinaryWebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/BinaryWebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/CloseWebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocketx/CloseWebSocketFrame.java index e8badbe858..67a61f8199 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/CloseWebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/CloseWebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/ContinuationWebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocketx/ContinuationWebSocketFrame.java index f70be07151..6e647e011b 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/ContinuationWebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/ContinuationWebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/PingWebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocketx/PingWebSocketFrame.java index a552c61a37..5815faad97 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/PingWebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/PingWebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/PongWebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocketx/PongWebSocketFrame.java index 411de51b48..ee3fd861b4 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/PongWebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/PongWebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/TextWebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocketx/TextWebSocketFrame.java index 7660116bf8..18aeabc66e 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/TextWebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/TextWebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocket00FrameDecoder.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocket00FrameDecoder.java index 258e8367c4..a0b37ffe9a 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocket00FrameDecoder.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocket00FrameDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocket00FrameEncoder.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocket00FrameEncoder.java index e95614d57a..ca49ea4f04 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocket00FrameEncoder.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocket00FrameEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker.java index eec8b8f94f..f38fd26cf6 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker00.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker00.java index b8a186515f..77e1c0d21e 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker00.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker00.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker10.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker10.java index 16cb79345d..79fc8bc666 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker10.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker10.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker17.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker17.java index 1b3aa51d06..c0a809bbb3 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker17.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshaker17.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshakerFactory.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshakerFactory.java index 8ab0bc3faa..e8738b5204 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshakerFactory.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientHandshakerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketFrame.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketFrame.java index 9d33419066..fd48834cd7 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketFrame.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketFrame.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketFrameType.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketFrameType.java index 1b50081c94..024373adb9 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketFrameType.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketFrameType.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketHandshakeException.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketHandshakeException.java index d937e31a64..815d330fb1 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketHandshakeException.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketHandshakeException.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker.java index 2e1b78d6f3..131cfaa3b8 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker00.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker00.java index 8fdd60c09c..cffc2e4c9b 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker00.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker00.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker10.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker10.java index e18564e31a..ace0f4e491 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker10.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker10.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker17.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker17.java index 5babae4eb1..f81b8d0b27 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker17.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshaker17.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshakerFactory.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshakerFactory.java index 9fdd1154e1..899408d653 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshakerFactory.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketServerHandshakerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketSpecificationVersion.java b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketSpecificationVersion.java index ddb0269d9a..65f2d03538 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketSpecificationVersion.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketSpecificationVersion.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/http/websocketx/package-info.java b/src/main/java/io/netty/handler/codec/http/websocketx/package-info.java index d566afa2fd..e8cd470db9 100644 --- a/src/main/java/io/netty/handler/codec/http/websocketx/package-info.java +++ b/src/main/java/io/netty/handler/codec/http/websocketx/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/oneone/OneToOneDecoder.java b/src/main/java/io/netty/handler/codec/oneone/OneToOneDecoder.java index 90645df667..2e2f56cb82 100644 --- a/src/main/java/io/netty/handler/codec/oneone/OneToOneDecoder.java +++ b/src/main/java/io/netty/handler/codec/oneone/OneToOneDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/oneone/OneToOneEncoder.java b/src/main/java/io/netty/handler/codec/oneone/OneToOneEncoder.java index 36628de058..307a6e581f 100644 --- a/src/main/java/io/netty/handler/codec/oneone/OneToOneEncoder.java +++ b/src/main/java/io/netty/handler/codec/oneone/OneToOneEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/oneone/package-info.java b/src/main/java/io/netty/handler/codec/oneone/package-info.java index af0b8184f3..2fe0c7ea83 100644 --- a/src/main/java/io/netty/handler/codec/oneone/package-info.java +++ b/src/main/java/io/netty/handler/codec/oneone/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/protobuf/ProtobufDecoder.java b/src/main/java/io/netty/handler/codec/protobuf/ProtobufDecoder.java index 01012fdc89..2aadf3552b 100644 --- a/src/main/java/io/netty/handler/codec/protobuf/ProtobufDecoder.java +++ b/src/main/java/io/netty/handler/codec/protobuf/ProtobufDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/protobuf/ProtobufEncoder.java b/src/main/java/io/netty/handler/codec/protobuf/ProtobufEncoder.java index c4690c5823..6f1607acdf 100644 --- a/src/main/java/io/netty/handler/codec/protobuf/ProtobufEncoder.java +++ b/src/main/java/io/netty/handler/codec/protobuf/ProtobufEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/protobuf/ProtobufVarint32FrameDecoder.java b/src/main/java/io/netty/handler/codec/protobuf/ProtobufVarint32FrameDecoder.java index 93337bc4d9..38db813d69 100644 --- a/src/main/java/io/netty/handler/codec/protobuf/ProtobufVarint32FrameDecoder.java +++ b/src/main/java/io/netty/handler/codec/protobuf/ProtobufVarint32FrameDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/protobuf/ProtobufVarint32LengthFieldPrepender.java b/src/main/java/io/netty/handler/codec/protobuf/ProtobufVarint32LengthFieldPrepender.java index f741b8c29f..d224c288a1 100644 --- a/src/main/java/io/netty/handler/codec/protobuf/ProtobufVarint32LengthFieldPrepender.java +++ b/src/main/java/io/netty/handler/codec/protobuf/ProtobufVarint32LengthFieldPrepender.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/protobuf/package-info.java b/src/main/java/io/netty/handler/codec/protobuf/package-info.java index 41658e8119..9d3c6ed5a5 100644 --- a/src/main/java/io/netty/handler/codec/protobuf/package-info.java +++ b/src/main/java/io/netty/handler/codec/protobuf/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/replay/ReplayError.java b/src/main/java/io/netty/handler/codec/replay/ReplayError.java index b7c83ee513..a2d98abfee 100644 --- a/src/main/java/io/netty/handler/codec/replay/ReplayError.java +++ b/src/main/java/io/netty/handler/codec/replay/ReplayError.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/replay/ReplayingDecoder.java b/src/main/java/io/netty/handler/codec/replay/ReplayingDecoder.java index 228a11f11f..be9b324c38 100644 --- a/src/main/java/io/netty/handler/codec/replay/ReplayingDecoder.java +++ b/src/main/java/io/netty/handler/codec/replay/ReplayingDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/replay/ReplayingDecoderBuffer.java b/src/main/java/io/netty/handler/codec/replay/ReplayingDecoderBuffer.java index 7e9e3a41c2..1a28dfa8f1 100644 --- a/src/main/java/io/netty/handler/codec/replay/ReplayingDecoderBuffer.java +++ b/src/main/java/io/netty/handler/codec/replay/ReplayingDecoderBuffer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/replay/UnreplayableOperationException.java b/src/main/java/io/netty/handler/codec/replay/UnreplayableOperationException.java index c28b11c445..daf1250937 100644 --- a/src/main/java/io/netty/handler/codec/replay/UnreplayableOperationException.java +++ b/src/main/java/io/netty/handler/codec/replay/UnreplayableOperationException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/replay/UnsafeDynamicChannelBuffer.java b/src/main/java/io/netty/handler/codec/replay/UnsafeDynamicChannelBuffer.java index 35dff198e1..820fe0f187 100644 --- a/src/main/java/io/netty/handler/codec/replay/UnsafeDynamicChannelBuffer.java +++ b/src/main/java/io/netty/handler/codec/replay/UnsafeDynamicChannelBuffer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/replay/VoidEnum.java b/src/main/java/io/netty/handler/codec/replay/VoidEnum.java index b119a28984..e0b35cb61f 100644 --- a/src/main/java/io/netty/handler/codec/replay/VoidEnum.java +++ b/src/main/java/io/netty/handler/codec/replay/VoidEnum.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/replay/package-info.java b/src/main/java/io/netty/handler/codec/replay/package-info.java index b053927a32..500ab3514e 100644 --- a/src/main/java/io/netty/handler/codec/replay/package-info.java +++ b/src/main/java/io/netty/handler/codec/replay/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspHeaders.java b/src/main/java/io/netty/handler/codec/rtsp/RtspHeaders.java index 666bb9bc4d..7e0e7e9159 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspHeaders.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspHeaders.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspMessageDecoder.java b/src/main/java/io/netty/handler/codec/rtsp/RtspMessageDecoder.java index 92f92b56fe..bab1f73977 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspMessageDecoder.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspMessageDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspMessageEncoder.java b/src/main/java/io/netty/handler/codec/rtsp/RtspMessageEncoder.java index cae03dfbd6..214a5f7f8d 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspMessageEncoder.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspMessageEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspMethods.java b/src/main/java/io/netty/handler/codec/rtsp/RtspMethods.java index c0278d8ae5..841f323db9 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspMethods.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspMethods.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspRequestDecoder.java b/src/main/java/io/netty/handler/codec/rtsp/RtspRequestDecoder.java index afe28ae783..5514bd63f6 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspRequestDecoder.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspRequestDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspRequestEncoder.java b/src/main/java/io/netty/handler/codec/rtsp/RtspRequestEncoder.java index 7d4f30ca85..b52ba37420 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspRequestEncoder.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspRequestEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspResponseDecoder.java b/src/main/java/io/netty/handler/codec/rtsp/RtspResponseDecoder.java index d470eaf3a4..246b842f94 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspResponseDecoder.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspResponseDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspResponseEncoder.java b/src/main/java/io/netty/handler/codec/rtsp/RtspResponseEncoder.java index 6596146648..7043a2ef55 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspResponseEncoder.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspResponseEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspResponseStatuses.java b/src/main/java/io/netty/handler/codec/rtsp/RtspResponseStatuses.java index 6f705317a3..f31ca78737 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspResponseStatuses.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspResponseStatuses.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/RtspVersions.java b/src/main/java/io/netty/handler/codec/rtsp/RtspVersions.java index 4f21d99f4a..45fbef23e2 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/RtspVersions.java +++ b/src/main/java/io/netty/handler/codec/rtsp/RtspVersions.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/rtsp/package-info.java b/src/main/java/io/netty/handler/codec/rtsp/package-info.java index 372c49c55c..83cd608231 100644 --- a/src/main/java/io/netty/handler/codec/rtsp/package-info.java +++ b/src/main/java/io/netty/handler/codec/rtsp/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/CachingClassResolver.java b/src/main/java/io/netty/handler/codec/serialization/CachingClassResolver.java index f48ad0181b..f32b862bdc 100644 --- a/src/main/java/io/netty/handler/codec/serialization/CachingClassResolver.java +++ b/src/main/java/io/netty/handler/codec/serialization/CachingClassResolver.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/ClassLoaderClassResolver.java b/src/main/java/io/netty/handler/codec/serialization/ClassLoaderClassResolver.java index bdac2618ad..e81557a859 100644 --- a/src/main/java/io/netty/handler/codec/serialization/ClassLoaderClassResolver.java +++ b/src/main/java/io/netty/handler/codec/serialization/ClassLoaderClassResolver.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/ClassResolver.java b/src/main/java/io/netty/handler/codec/serialization/ClassResolver.java index 33d18d7d8c..862d7c6115 100644 --- a/src/main/java/io/netty/handler/codec/serialization/ClassResolver.java +++ b/src/main/java/io/netty/handler/codec/serialization/ClassResolver.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/ClassResolvers.java b/src/main/java/io/netty/handler/codec/serialization/ClassResolvers.java index 9ae0c6ddd5..c6c756e94f 100644 --- a/src/main/java/io/netty/handler/codec/serialization/ClassResolvers.java +++ b/src/main/java/io/netty/handler/codec/serialization/ClassResolvers.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/CompactObjectInputStream.java b/src/main/java/io/netty/handler/codec/serialization/CompactObjectInputStream.java index 179d8f613a..baa9f16be1 100644 --- a/src/main/java/io/netty/handler/codec/serialization/CompactObjectInputStream.java +++ b/src/main/java/io/netty/handler/codec/serialization/CompactObjectInputStream.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/CompactObjectOutputStream.java b/src/main/java/io/netty/handler/codec/serialization/CompactObjectOutputStream.java index 41e044ee24..d386ce3b72 100644 --- a/src/main/java/io/netty/handler/codec/serialization/CompactObjectOutputStream.java +++ b/src/main/java/io/netty/handler/codec/serialization/CompactObjectOutputStream.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectDecoder.java b/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectDecoder.java index 711bc84f68..79544f571d 100644 --- a/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectDecoder.java +++ b/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectDecoderState.java b/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectDecoderState.java index 4945eab345..9ed1109b9a 100644 --- a/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectDecoderState.java +++ b/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectDecoderState.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectEncoder.java b/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectEncoder.java index aa270ec817..d6a58961d9 100644 --- a/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectEncoder.java +++ b/src/main/java/io/netty/handler/codec/serialization/CompatibleObjectEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/ObjectDecoder.java b/src/main/java/io/netty/handler/codec/serialization/ObjectDecoder.java index 9a53d6afd3..7a0a642f95 100644 --- a/src/main/java/io/netty/handler/codec/serialization/ObjectDecoder.java +++ b/src/main/java/io/netty/handler/codec/serialization/ObjectDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/ObjectDecoderInputStream.java b/src/main/java/io/netty/handler/codec/serialization/ObjectDecoderInputStream.java index 3a824e4ef2..0d9daece52 100644 --- a/src/main/java/io/netty/handler/codec/serialization/ObjectDecoderInputStream.java +++ b/src/main/java/io/netty/handler/codec/serialization/ObjectDecoderInputStream.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/ObjectEncoder.java b/src/main/java/io/netty/handler/codec/serialization/ObjectEncoder.java index 2964706cbf..bb8d104a12 100644 --- a/src/main/java/io/netty/handler/codec/serialization/ObjectEncoder.java +++ b/src/main/java/io/netty/handler/codec/serialization/ObjectEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/ObjectEncoderOutputStream.java b/src/main/java/io/netty/handler/codec/serialization/ObjectEncoderOutputStream.java index f47106f41a..84bd7576d1 100644 --- a/src/main/java/io/netty/handler/codec/serialization/ObjectEncoderOutputStream.java +++ b/src/main/java/io/netty/handler/codec/serialization/ObjectEncoderOutputStream.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/ReferenceMap.java b/src/main/java/io/netty/handler/codec/serialization/ReferenceMap.java index 2270612256..b32bbb786e 100644 --- a/src/main/java/io/netty/handler/codec/serialization/ReferenceMap.java +++ b/src/main/java/io/netty/handler/codec/serialization/ReferenceMap.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/SoftReferenceMap.java b/src/main/java/io/netty/handler/codec/serialization/SoftReferenceMap.java index 69b726bace..aae391c157 100644 --- a/src/main/java/io/netty/handler/codec/serialization/SoftReferenceMap.java +++ b/src/main/java/io/netty/handler/codec/serialization/SoftReferenceMap.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/SwitchableInputStream.java b/src/main/java/io/netty/handler/codec/serialization/SwitchableInputStream.java index f7647877fe..e5a97f928c 100644 --- a/src/main/java/io/netty/handler/codec/serialization/SwitchableInputStream.java +++ b/src/main/java/io/netty/handler/codec/serialization/SwitchableInputStream.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/WeakReferenceMap.java b/src/main/java/io/netty/handler/codec/serialization/WeakReferenceMap.java index d6f60c5941..76d61c02b2 100644 --- a/src/main/java/io/netty/handler/codec/serialization/WeakReferenceMap.java +++ b/src/main/java/io/netty/handler/codec/serialization/WeakReferenceMap.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/serialization/package-info.java b/src/main/java/io/netty/handler/codec/serialization/package-info.java index 6471c12340..81e4b167c7 100644 --- a/src/main/java/io/netty/handler/codec/serialization/package-info.java +++ b/src/main/java/io/netty/handler/codec/serialization/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/string/StringDecoder.java b/src/main/java/io/netty/handler/codec/string/StringDecoder.java index f521059e70..9759ecb5d2 100644 --- a/src/main/java/io/netty/handler/codec/string/StringDecoder.java +++ b/src/main/java/io/netty/handler/codec/string/StringDecoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/string/StringEncoder.java b/src/main/java/io/netty/handler/codec/string/StringEncoder.java index 63584b78fa..3d227902ae 100644 --- a/src/main/java/io/netty/handler/codec/string/StringEncoder.java +++ b/src/main/java/io/netty/handler/codec/string/StringEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/codec/string/package-info.java b/src/main/java/io/netty/handler/codec/string/package-info.java index 64772a13b6..2343e51dc7 100644 --- a/src/main/java/io/netty/handler/codec/string/package-info.java +++ b/src/main/java/io/netty/handler/codec/string/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/execution/ChannelEventRunnable.java b/src/main/java/io/netty/handler/execution/ChannelEventRunnable.java index 11c6c33772..af24fb7105 100644 --- a/src/main/java/io/netty/handler/execution/ChannelEventRunnable.java +++ b/src/main/java/io/netty/handler/execution/ChannelEventRunnable.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/execution/ExecutionHandler.java b/src/main/java/io/netty/handler/execution/ExecutionHandler.java index ae57f97192..e751fbb6fe 100644 --- a/src/main/java/io/netty/handler/execution/ExecutionHandler.java +++ b/src/main/java/io/netty/handler/execution/ExecutionHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/execution/MemoryAwareThreadPoolExecutor.java b/src/main/java/io/netty/handler/execution/MemoryAwareThreadPoolExecutor.java index 1cb46e7e61..276ab1f5fe 100644 --- a/src/main/java/io/netty/handler/execution/MemoryAwareThreadPoolExecutor.java +++ b/src/main/java/io/netty/handler/execution/MemoryAwareThreadPoolExecutor.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/execution/OrderedMemoryAwareThreadPoolExecutor.java b/src/main/java/io/netty/handler/execution/OrderedMemoryAwareThreadPoolExecutor.java index 3407041062..924c329a45 100644 --- a/src/main/java/io/netty/handler/execution/OrderedMemoryAwareThreadPoolExecutor.java +++ b/src/main/java/io/netty/handler/execution/OrderedMemoryAwareThreadPoolExecutor.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/execution/package-info.java b/src/main/java/io/netty/handler/execution/package-info.java index 50200d35c7..b2e03b906e 100644 --- a/src/main/java/io/netty/handler/execution/package-info.java +++ b/src/main/java/io/netty/handler/execution/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/CIDR.java b/src/main/java/io/netty/handler/ipfilter/CIDR.java index 3561c5021d..0cc9cb20e3 100644 --- a/src/main/java/io/netty/handler/ipfilter/CIDR.java +++ b/src/main/java/io/netty/handler/ipfilter/CIDR.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/CIDR4.java b/src/main/java/io/netty/handler/ipfilter/CIDR4.java index 6c50f2c9d8..9135584078 100644 --- a/src/main/java/io/netty/handler/ipfilter/CIDR4.java +++ b/src/main/java/io/netty/handler/ipfilter/CIDR4.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/CIDR6.java b/src/main/java/io/netty/handler/ipfilter/CIDR6.java index 6551f70256..f56bf8d6c0 100644 --- a/src/main/java/io/netty/handler/ipfilter/CIDR6.java +++ b/src/main/java/io/netty/handler/ipfilter/CIDR6.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/IpFilterListener.java b/src/main/java/io/netty/handler/ipfilter/IpFilterListener.java index a0f5be7122..fe0be8540e 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpFilterListener.java +++ b/src/main/java/io/netty/handler/ipfilter/IpFilterListener.java @@ -1,18 +1,17 @@ /* - * JBoss, Home of Professional Open Source - * Copyright 2010, Red Hat Middleware LLC, and individual contributors - * by the @authors tag. See the copyright.txt in the distribution for a - * full listing of individual contributors. + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 + * * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. */ package io.netty.handler.ipfilter; @@ -26,7 +25,8 @@ import io.netty.channel.ChannelHandlerContext; * The listener interface for receiving ipFilter events. * * @see IpFilteringHandler - * + * + */ public interface IpFilterListener { diff --git a/src/main/java/io/netty/handler/ipfilter/IpFilterRule.java b/src/main/java/io/netty/handler/ipfilter/IpFilterRule.java index 122dbef9f9..322670d3cf 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpFilterRule.java +++ b/src/main/java/io/netty/handler/ipfilter/IpFilterRule.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/IpFilterRuleHandler.java b/src/main/java/io/netty/handler/ipfilter/IpFilterRuleHandler.java index a1c6ea6645..8aacdb7730 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpFilterRuleHandler.java +++ b/src/main/java/io/netty/handler/ipfilter/IpFilterRuleHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/IpFilterRuleList.java b/src/main/java/io/netty/handler/ipfilter/IpFilterRuleList.java index 5aa8ed3887..57a9ad9aea 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpFilterRuleList.java +++ b/src/main/java/io/netty/handler/ipfilter/IpFilterRuleList.java @@ -1,18 +1,17 @@ /* - * JBoss, Home of Professional Open Source - * Copyright 2010, Red Hat Middleware LLC, and individual contributors - * by the @authors tag. See the copyright.txt in the distribution for a - * full listing of individual contributors. + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 + * * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. */ package io.netty.handler.ipfilter; @@ -43,7 +42,8 @@ import io.netty.logging.InternalLoggerFactory; *
* new IPFilterRuleHandler().addAll(new IpFilterRuleList("+n:localhost, -n:*")); *
- * + * + */ public class IpFilterRuleList extends ArrayList { diff --git a/src/main/java/io/netty/handler/ipfilter/IpFilteringHandler.java b/src/main/java/io/netty/handler/ipfilter/IpFilteringHandler.java index c7846cbd1e..08f5f455a7 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpFilteringHandler.java +++ b/src/main/java/io/netty/handler/ipfilter/IpFilteringHandler.java @@ -1,18 +1,17 @@ /* - * JBoss, Home of Professional Open Source - * Copyright 2010, Red Hat Middleware LLC, and individual contributors - * by the @authors tag. See the copyright.txt in the distribution for a - * full listing of individual contributors. + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 + * * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. */ package io.netty.handler.ipfilter; diff --git a/src/main/java/io/netty/handler/ipfilter/IpFilteringHandlerImpl.java b/src/main/java/io/netty/handler/ipfilter/IpFilteringHandlerImpl.java index d492f5f29b..b082d86099 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpFilteringHandlerImpl.java +++ b/src/main/java/io/netty/handler/ipfilter/IpFilteringHandlerImpl.java @@ -1,18 +1,17 @@ /* - * JBoss, Home of Professional Open Source - * Copyright 2010, Red Hat Middleware LLC, and individual contributors - * by the @authors tag. See the copyright.txt in the distribution for a - * full listing of individual contributors. + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 + * * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. */ package io.netty.handler.ipfilter; @@ -29,7 +28,8 @@ import io.netty.channel.Channels; // TODO: Auto-generated Javadoc /** * General class that handle Ip Filtering. - * + * + */ public abstract class IpFilteringHandlerImpl implements ChannelUpstreamHandler, IpFilteringHandler { diff --git a/src/main/java/io/netty/handler/ipfilter/IpSet.java b/src/main/java/io/netty/handler/ipfilter/IpSet.java index 71657012d4..a734975e7a 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpSet.java +++ b/src/main/java/io/netty/handler/ipfilter/IpSet.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/IpSubnet.java b/src/main/java/io/netty/handler/ipfilter/IpSubnet.java index 6934d669e7..84a1917715 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpSubnet.java +++ b/src/main/java/io/netty/handler/ipfilter/IpSubnet.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/IpSubnetFilterRule.java b/src/main/java/io/netty/handler/ipfilter/IpSubnetFilterRule.java index 05e6ed51b3..f0ba8348c3 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpSubnetFilterRule.java +++ b/src/main/java/io/netty/handler/ipfilter/IpSubnetFilterRule.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/IpV4Subnet.java b/src/main/java/io/netty/handler/ipfilter/IpV4Subnet.java index c3b93941f3..752e6060da 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpV4Subnet.java +++ b/src/main/java/io/netty/handler/ipfilter/IpV4Subnet.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/IpV4SubnetFilterRule.java b/src/main/java/io/netty/handler/ipfilter/IpV4SubnetFilterRule.java index ca3a0c36aa..490eb7e82f 100644 --- a/src/main/java/io/netty/handler/ipfilter/IpV4SubnetFilterRule.java +++ b/src/main/java/io/netty/handler/ipfilter/IpV4SubnetFilterRule.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/OneIpFilterHandler.java b/src/main/java/io/netty/handler/ipfilter/OneIpFilterHandler.java index 4a7700c55a..50b2778f3a 100644 --- a/src/main/java/io/netty/handler/ipfilter/OneIpFilterHandler.java +++ b/src/main/java/io/netty/handler/ipfilter/OneIpFilterHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ipfilter/PatternRule.java b/src/main/java/io/netty/handler/ipfilter/PatternRule.java index 8d3a354e73..7a0836ab0d 100644 --- a/src/main/java/io/netty/handler/ipfilter/PatternRule.java +++ b/src/main/java/io/netty/handler/ipfilter/PatternRule.java @@ -1,18 +1,17 @@ /* - * JBoss, Home of Professional Open Source - * Copyright 2010, Red Hat Middleware LLC, and individual contributors - * by the @authors tag. See the copyright.txt in the distribution for a - * full listing of individual contributors. + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 + * * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. */ package io.netty.handler.ipfilter; @@ -47,7 +46,8 @@ import io.netty.logging.InternalLoggerFactory; *
* new PatternRule(false, "n:*") *
- * + * + */ public class PatternRule implements IpFilterRule, Comparable { diff --git a/src/main/java/io/netty/handler/ipfilter/package-info.java b/src/main/java/io/netty/handler/ipfilter/package-info.java index efc987ed26..7d95e91ecc 100644 --- a/src/main/java/io/netty/handler/ipfilter/package-info.java +++ b/src/main/java/io/netty/handler/ipfilter/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/logging/LoggingHandler.java b/src/main/java/io/netty/handler/logging/LoggingHandler.java index ab7fd1ac69..9b92815e99 100644 --- a/src/main/java/io/netty/handler/logging/LoggingHandler.java +++ b/src/main/java/io/netty/handler/logging/LoggingHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/logging/package-info.java b/src/main/java/io/netty/handler/logging/package-info.java index 0f03636dd4..b14bf5a2ee 100644 --- a/src/main/java/io/netty/handler/logging/package-info.java +++ b/src/main/java/io/netty/handler/logging/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/queue/BlockingReadHandler.java b/src/main/java/io/netty/handler/queue/BlockingReadHandler.java index 322419c402..b6b871a60e 100644 --- a/src/main/java/io/netty/handler/queue/BlockingReadHandler.java +++ b/src/main/java/io/netty/handler/queue/BlockingReadHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/queue/BlockingReadTimeoutException.java b/src/main/java/io/netty/handler/queue/BlockingReadTimeoutException.java index 71a2a08977..7528f892d2 100644 --- a/src/main/java/io/netty/handler/queue/BlockingReadTimeoutException.java +++ b/src/main/java/io/netty/handler/queue/BlockingReadTimeoutException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/queue/BufferedWriteHandler.java b/src/main/java/io/netty/handler/queue/BufferedWriteHandler.java index 2df1350bb8..97ceabc0f0 100644 --- a/src/main/java/io/netty/handler/queue/BufferedWriteHandler.java +++ b/src/main/java/io/netty/handler/queue/BufferedWriteHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/queue/package-info.java b/src/main/java/io/netty/handler/queue/package-info.java index eaee3602f8..906a544373 100644 --- a/src/main/java/io/netty/handler/queue/package-info.java +++ b/src/main/java/io/netty/handler/queue/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/region/ChannelWritableByteChannel.java b/src/main/java/io/netty/handler/region/ChannelWritableByteChannel.java index 2a433b0885..6c1b28305e 100644 --- a/src/main/java/io/netty/handler/region/ChannelWritableByteChannel.java +++ b/src/main/java/io/netty/handler/region/ChannelWritableByteChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ @@ -34,8 +34,10 @@ import io.netty.channel.MessageEvent; /** * {@link WritableByteChannel} implementation which will take care to wrap the {@link ByteBuffer} to a {@link ChannelBuffer} and forward it to the next {@link ChannelDownstreamHandler} in the {@link ChannelPipeline} on every {@link #write(ByteBuffer)} * operation. - * - */ + * + + + */ public class ChannelWritableByteChannel implements WritableByteChannel { private boolean closed = false; diff --git a/src/main/java/io/netty/handler/region/FileRegionEncoder.java b/src/main/java/io/netty/handler/region/FileRegionEncoder.java index 33eb190b20..f361eace9f 100644 --- a/src/main/java/io/netty/handler/region/FileRegionEncoder.java +++ b/src/main/java/io/netty/handler/region/FileRegionEncoder.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ @@ -35,8 +35,10 @@ import io.netty.channel.MessageEvent; * * Users of this {@link FileRegionEncoder} should add / remove this {@link ChannelDownstreamHandler} on the fly to get the best performance out of their system. * - * - */ + * + + + */ @ChannelHandler.Sharable public class FileRegionEncoder implements ChannelDownstreamHandler{ diff --git a/src/main/java/io/netty/handler/ssl/ImmediateExecutor.java b/src/main/java/io/netty/handler/ssl/ImmediateExecutor.java index 1e5f69059f..bf83828768 100644 --- a/src/main/java/io/netty/handler/ssl/ImmediateExecutor.java +++ b/src/main/java/io/netty/handler/ssl/ImmediateExecutor.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ssl/SslBufferPool.java b/src/main/java/io/netty/handler/ssl/SslBufferPool.java index f601d8bd7c..aef2694508 100644 --- a/src/main/java/io/netty/handler/ssl/SslBufferPool.java +++ b/src/main/java/io/netty/handler/ssl/SslBufferPool.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ssl/SslHandler.java b/src/main/java/io/netty/handler/ssl/SslHandler.java index 31e96dba6f..16e27b6832 100644 --- a/src/main/java/io/netty/handler/ssl/SslHandler.java +++ b/src/main/java/io/netty/handler/ssl/SslHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/ssl/package-info.java b/src/main/java/io/netty/handler/ssl/package-info.java index 84d6cd1ccf..90aab36df3 100644 --- a/src/main/java/io/netty/handler/ssl/package-info.java +++ b/src/main/java/io/netty/handler/ssl/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/stream/ChunkedFile.java b/src/main/java/io/netty/handler/stream/ChunkedFile.java index f176af3193..7aa0d06320 100644 --- a/src/main/java/io/netty/handler/stream/ChunkedFile.java +++ b/src/main/java/io/netty/handler/stream/ChunkedFile.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/stream/ChunkedInput.java b/src/main/java/io/netty/handler/stream/ChunkedInput.java index ec70503153..e7b783be2d 100644 --- a/src/main/java/io/netty/handler/stream/ChunkedInput.java +++ b/src/main/java/io/netty/handler/stream/ChunkedInput.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/stream/ChunkedNioFile.java b/src/main/java/io/netty/handler/stream/ChunkedNioFile.java index 6ffa64888a..8c3efa572b 100644 --- a/src/main/java/io/netty/handler/stream/ChunkedNioFile.java +++ b/src/main/java/io/netty/handler/stream/ChunkedNioFile.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/stream/ChunkedNioStream.java b/src/main/java/io/netty/handler/stream/ChunkedNioStream.java index 3eabf4d6a1..dc368c98be 100644 --- a/src/main/java/io/netty/handler/stream/ChunkedNioStream.java +++ b/src/main/java/io/netty/handler/stream/ChunkedNioStream.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/stream/ChunkedStream.java b/src/main/java/io/netty/handler/stream/ChunkedStream.java index d4a6e782ff..6ad077f9b5 100644 --- a/src/main/java/io/netty/handler/stream/ChunkedStream.java +++ b/src/main/java/io/netty/handler/stream/ChunkedStream.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/stream/ChunkedWriteHandler.java b/src/main/java/io/netty/handler/stream/ChunkedWriteHandler.java index c1dcb6a7d6..a071a618db 100644 --- a/src/main/java/io/netty/handler/stream/ChunkedWriteHandler.java +++ b/src/main/java/io/netty/handler/stream/ChunkedWriteHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/stream/package-info.java b/src/main/java/io/netty/handler/stream/package-info.java index e915a03729..50701e5db3 100644 --- a/src/main/java/io/netty/handler/stream/package-info.java +++ b/src/main/java/io/netty/handler/stream/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/DefaultIdleStateEvent.java b/src/main/java/io/netty/handler/timeout/DefaultIdleStateEvent.java index ef1fbad830..f1fa029cd3 100644 --- a/src/main/java/io/netty/handler/timeout/DefaultIdleStateEvent.java +++ b/src/main/java/io/netty/handler/timeout/DefaultIdleStateEvent.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/IdleState.java b/src/main/java/io/netty/handler/timeout/IdleState.java index ecfcbcab9a..12ffe134bf 100644 --- a/src/main/java/io/netty/handler/timeout/IdleState.java +++ b/src/main/java/io/netty/handler/timeout/IdleState.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/IdleStateAwareChannelHandler.java b/src/main/java/io/netty/handler/timeout/IdleStateAwareChannelHandler.java index 6092eb34e6..f4c3c18930 100644 --- a/src/main/java/io/netty/handler/timeout/IdleStateAwareChannelHandler.java +++ b/src/main/java/io/netty/handler/timeout/IdleStateAwareChannelHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/IdleStateAwareChannelUpstreamHandler.java b/src/main/java/io/netty/handler/timeout/IdleStateAwareChannelUpstreamHandler.java index 22ad0c5e0f..48b91d8f34 100644 --- a/src/main/java/io/netty/handler/timeout/IdleStateAwareChannelUpstreamHandler.java +++ b/src/main/java/io/netty/handler/timeout/IdleStateAwareChannelUpstreamHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/IdleStateEvent.java b/src/main/java/io/netty/handler/timeout/IdleStateEvent.java index 124e25e43e..5175fd391f 100644 --- a/src/main/java/io/netty/handler/timeout/IdleStateEvent.java +++ b/src/main/java/io/netty/handler/timeout/IdleStateEvent.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/IdleStateHandler.java b/src/main/java/io/netty/handler/timeout/IdleStateHandler.java index 89e717ca3f..28fed1bade 100644 --- a/src/main/java/io/netty/handler/timeout/IdleStateHandler.java +++ b/src/main/java/io/netty/handler/timeout/IdleStateHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/ReadTimeoutException.java b/src/main/java/io/netty/handler/timeout/ReadTimeoutException.java index fb451ffcdb..1d0adbe5d1 100644 --- a/src/main/java/io/netty/handler/timeout/ReadTimeoutException.java +++ b/src/main/java/io/netty/handler/timeout/ReadTimeoutException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/ReadTimeoutHandler.java b/src/main/java/io/netty/handler/timeout/ReadTimeoutHandler.java index a066f6153d..31f5fa57b6 100644 --- a/src/main/java/io/netty/handler/timeout/ReadTimeoutHandler.java +++ b/src/main/java/io/netty/handler/timeout/ReadTimeoutHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/TimeoutException.java b/src/main/java/io/netty/handler/timeout/TimeoutException.java index a92a3f22fe..17ec225427 100644 --- a/src/main/java/io/netty/handler/timeout/TimeoutException.java +++ b/src/main/java/io/netty/handler/timeout/TimeoutException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/WriteTimeoutException.java b/src/main/java/io/netty/handler/timeout/WriteTimeoutException.java index 7ccf64fb49..42c2ecedab 100644 --- a/src/main/java/io/netty/handler/timeout/WriteTimeoutException.java +++ b/src/main/java/io/netty/handler/timeout/WriteTimeoutException.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/WriteTimeoutHandler.java b/src/main/java/io/netty/handler/timeout/WriteTimeoutHandler.java index 6a24dc8169..f00a177024 100644 --- a/src/main/java/io/netty/handler/timeout/WriteTimeoutHandler.java +++ b/src/main/java/io/netty/handler/timeout/WriteTimeoutHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/timeout/package-info.java b/src/main/java/io/netty/handler/timeout/package-info.java index 07eb570fba..f78dfbeda6 100644 --- a/src/main/java/io/netty/handler/timeout/package-info.java +++ b/src/main/java/io/netty/handler/timeout/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/traffic/AbstractTrafficShapingHandler.java b/src/main/java/io/netty/handler/traffic/AbstractTrafficShapingHandler.java index e50c4907c3..edd22e13f0 100644 --- a/src/main/java/io/netty/handler/traffic/AbstractTrafficShapingHandler.java +++ b/src/main/java/io/netty/handler/traffic/AbstractTrafficShapingHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/traffic/ChannelTrafficShapingHandler.java b/src/main/java/io/netty/handler/traffic/ChannelTrafficShapingHandler.java index cdc3b3ba19..197064e84d 100644 --- a/src/main/java/io/netty/handler/traffic/ChannelTrafficShapingHandler.java +++ b/src/main/java/io/netty/handler/traffic/ChannelTrafficShapingHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/traffic/GlobalTrafficShapingHandler.java b/src/main/java/io/netty/handler/traffic/GlobalTrafficShapingHandler.java index aab4ca52c9..de979de39c 100644 --- a/src/main/java/io/netty/handler/traffic/GlobalTrafficShapingHandler.java +++ b/src/main/java/io/netty/handler/traffic/GlobalTrafficShapingHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/traffic/TrafficCounter.java b/src/main/java/io/netty/handler/traffic/TrafficCounter.java index 5b867c7aa2..1f56136734 100644 --- a/src/main/java/io/netty/handler/traffic/TrafficCounter.java +++ b/src/main/java/io/netty/handler/traffic/TrafficCounter.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/handler/traffic/package-info.java b/src/main/java/io/netty/handler/traffic/package-info.java index 44b11baf96..a5f6e0be00 100644 --- a/src/main/java/io/netty/handler/traffic/package-info.java +++ b/src/main/java/io/netty/handler/traffic/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/AbstractInternalLogger.java b/src/main/java/io/netty/logging/AbstractInternalLogger.java index b309d1bfc7..8fafb296f0 100644 --- a/src/main/java/io/netty/logging/AbstractInternalLogger.java +++ b/src/main/java/io/netty/logging/AbstractInternalLogger.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/CommonsLogger.java b/src/main/java/io/netty/logging/CommonsLogger.java index f0417d203e..09d7b8b74c 100644 --- a/src/main/java/io/netty/logging/CommonsLogger.java +++ b/src/main/java/io/netty/logging/CommonsLogger.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/CommonsLoggerFactory.java b/src/main/java/io/netty/logging/CommonsLoggerFactory.java index 70f66151a7..3055170b09 100644 --- a/src/main/java/io/netty/logging/CommonsLoggerFactory.java +++ b/src/main/java/io/netty/logging/CommonsLoggerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/InternalLogLevel.java b/src/main/java/io/netty/logging/InternalLogLevel.java index ef98f2aa6d..94d56dd47d 100644 --- a/src/main/java/io/netty/logging/InternalLogLevel.java +++ b/src/main/java/io/netty/logging/InternalLogLevel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/InternalLogger.java b/src/main/java/io/netty/logging/InternalLogger.java index b394dd60a1..d9ea1baf9a 100644 --- a/src/main/java/io/netty/logging/InternalLogger.java +++ b/src/main/java/io/netty/logging/InternalLogger.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/InternalLoggerFactory.java b/src/main/java/io/netty/logging/InternalLoggerFactory.java index 195e3fd335..54052c969c 100644 --- a/src/main/java/io/netty/logging/InternalLoggerFactory.java +++ b/src/main/java/io/netty/logging/InternalLoggerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/JBossLogger.java b/src/main/java/io/netty/logging/JBossLogger.java index 37dc000bbe..7b66b18460 100644 --- a/src/main/java/io/netty/logging/JBossLogger.java +++ b/src/main/java/io/netty/logging/JBossLogger.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/JBossLoggerFactory.java b/src/main/java/io/netty/logging/JBossLoggerFactory.java index 65b90ea764..73c8eaff86 100644 --- a/src/main/java/io/netty/logging/JBossLoggerFactory.java +++ b/src/main/java/io/netty/logging/JBossLoggerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/JdkLogger.java b/src/main/java/io/netty/logging/JdkLogger.java index a76949b467..c63f71be66 100644 --- a/src/main/java/io/netty/logging/JdkLogger.java +++ b/src/main/java/io/netty/logging/JdkLogger.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/JdkLoggerFactory.java b/src/main/java/io/netty/logging/JdkLoggerFactory.java index 9e698e8265..b72f57ce04 100644 --- a/src/main/java/io/netty/logging/JdkLoggerFactory.java +++ b/src/main/java/io/netty/logging/JdkLoggerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/Log4JLogger.java b/src/main/java/io/netty/logging/Log4JLogger.java index d8be91d71c..00699fa1c2 100644 --- a/src/main/java/io/netty/logging/Log4JLogger.java +++ b/src/main/java/io/netty/logging/Log4JLogger.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/Log4JLoggerFactory.java b/src/main/java/io/netty/logging/Log4JLoggerFactory.java index 25f6ad0e08..45812f29cf 100644 --- a/src/main/java/io/netty/logging/Log4JLoggerFactory.java +++ b/src/main/java/io/netty/logging/Log4JLoggerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/OsgiLogger.java b/src/main/java/io/netty/logging/OsgiLogger.java index 682d23cea8..ce0ebba218 100644 --- a/src/main/java/io/netty/logging/OsgiLogger.java +++ b/src/main/java/io/netty/logging/OsgiLogger.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/OsgiLoggerFactory.java b/src/main/java/io/netty/logging/OsgiLoggerFactory.java index 68eca62c18..ffe1218fff 100644 --- a/src/main/java/io/netty/logging/OsgiLoggerFactory.java +++ b/src/main/java/io/netty/logging/OsgiLoggerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/Slf4JLogger.java b/src/main/java/io/netty/logging/Slf4JLogger.java index 059711fa36..2fa350264e 100644 --- a/src/main/java/io/netty/logging/Slf4JLogger.java +++ b/src/main/java/io/netty/logging/Slf4JLogger.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/Slf4JLoggerFactory.java b/src/main/java/io/netty/logging/Slf4JLoggerFactory.java index 1fe5f15379..3181d7accd 100644 --- a/src/main/java/io/netty/logging/Slf4JLoggerFactory.java +++ b/src/main/java/io/netty/logging/Slf4JLoggerFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/logging/package-info.java b/src/main/java/io/netty/logging/package-info.java index dd1a79e37e..17b55763d9 100644 --- a/src/main/java/io/netty/logging/package-info.java +++ b/src/main/java/io/netty/logging/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/CharsetUtil.java b/src/main/java/io/netty/util/CharsetUtil.java index 751ba8cd05..df0c4bcfb6 100644 --- a/src/main/java/io/netty/util/CharsetUtil.java +++ b/src/main/java/io/netty/util/CharsetUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/DebugUtil.java b/src/main/java/io/netty/util/DebugUtil.java index ca241c3ed8..773740c083 100644 --- a/src/main/java/io/netty/util/DebugUtil.java +++ b/src/main/java/io/netty/util/DebugUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/DefaultObjectSizeEstimator.java b/src/main/java/io/netty/util/DefaultObjectSizeEstimator.java index 2ab95d17d4..806986a062 100644 --- a/src/main/java/io/netty/util/DefaultObjectSizeEstimator.java +++ b/src/main/java/io/netty/util/DefaultObjectSizeEstimator.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/EstimatableObjectWrapper.java b/src/main/java/io/netty/util/EstimatableObjectWrapper.java index 825f4cf6a5..b42ad55c0a 100644 --- a/src/main/java/io/netty/util/EstimatableObjectWrapper.java +++ b/src/main/java/io/netty/util/EstimatableObjectWrapper.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/ExternalResourceReleasable.java b/src/main/java/io/netty/util/ExternalResourceReleasable.java index 4061708ea3..6bb6875cf7 100644 --- a/src/main/java/io/netty/util/ExternalResourceReleasable.java +++ b/src/main/java/io/netty/util/ExternalResourceReleasable.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/ExternalResourceUtil.java b/src/main/java/io/netty/util/ExternalResourceUtil.java index 2ba20e9fb6..afdb5d7162 100644 --- a/src/main/java/io/netty/util/ExternalResourceUtil.java +++ b/src/main/java/io/netty/util/ExternalResourceUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/HashedWheelTimer.java b/src/main/java/io/netty/util/HashedWheelTimer.java index 783961c1af..8f0ec16847 100644 --- a/src/main/java/io/netty/util/HashedWheelTimer.java +++ b/src/main/java/io/netty/util/HashedWheelTimer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/MapBackedSet.java b/src/main/java/io/netty/util/MapBackedSet.java index 93fb0104b9..68a32c9db0 100644 --- a/src/main/java/io/netty/util/MapBackedSet.java +++ b/src/main/java/io/netty/util/MapBackedSet.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/NamedThreadFactory.java b/src/main/java/io/netty/util/NamedThreadFactory.java index b56ecf9177..33fa15e084 100644 --- a/src/main/java/io/netty/util/NamedThreadFactory.java +++ b/src/main/java/io/netty/util/NamedThreadFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/ObjectSizeEstimator.java b/src/main/java/io/netty/util/ObjectSizeEstimator.java index 4e66ad4730..8810282d14 100644 --- a/src/main/java/io/netty/util/ObjectSizeEstimator.java +++ b/src/main/java/io/netty/util/ObjectSizeEstimator.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/Timeout.java b/src/main/java/io/netty/util/Timeout.java index 94e43b03e4..3afdc6bee8 100644 --- a/src/main/java/io/netty/util/Timeout.java +++ b/src/main/java/io/netty/util/Timeout.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/Timer.java b/src/main/java/io/netty/util/Timer.java index 7e4ae8d658..3230f0f0a3 100644 --- a/src/main/java/io/netty/util/Timer.java +++ b/src/main/java/io/netty/util/Timer.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/TimerTask.java b/src/main/java/io/netty/util/TimerTask.java index d9d3caadd3..897dc16e61 100644 --- a/src/main/java/io/netty/util/TimerTask.java +++ b/src/main/java/io/netty/util/TimerTask.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/UnsafeDetectUtil.java b/src/main/java/io/netty/util/UnsafeDetectUtil.java index 5c1ef24465..97b909b191 100644 --- a/src/main/java/io/netty/util/UnsafeDetectUtil.java +++ b/src/main/java/io/netty/util/UnsafeDetectUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ @@ -20,8 +20,10 @@ import java.util.concurrent.atomic.AtomicInteger; /** * Utility which checks if {@value #UNSAFE} class can be found in the classpath - * - */ + * + + + */ public class UnsafeDetectUtil { private static final String UNSAFE = "sun.misc.Unsafe"; diff --git a/src/main/java/io/netty/util/VirtualExecutorService.java b/src/main/java/io/netty/util/VirtualExecutorService.java index 5b023f68d7..3326d1b728 100644 --- a/src/main/java/io/netty/util/VirtualExecutorService.java +++ b/src/main/java/io/netty/util/VirtualExecutorService.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/AtomicFieldUpdaterUtil.java b/src/main/java/io/netty/util/internal/AtomicFieldUpdaterUtil.java index 6847721284..f4951b8e51 100644 --- a/src/main/java/io/netty/util/internal/AtomicFieldUpdaterUtil.java +++ b/src/main/java/io/netty/util/internal/AtomicFieldUpdaterUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/ConcurrentHashMap.java b/src/main/java/io/netty/util/internal/ConcurrentHashMap.java index ce77a03a74..662481d3f4 100644 --- a/src/main/java/io/netty/util/internal/ConcurrentHashMap.java +++ b/src/main/java/io/netty/util/internal/ConcurrentHashMap.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/ConcurrentIdentityHashMap.java b/src/main/java/io/netty/util/internal/ConcurrentIdentityHashMap.java index ed17c1c007..f16192ffa8 100644 --- a/src/main/java/io/netty/util/internal/ConcurrentIdentityHashMap.java +++ b/src/main/java/io/netty/util/internal/ConcurrentIdentityHashMap.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/ConcurrentIdentityWeakKeyHashMap.java b/src/main/java/io/netty/util/internal/ConcurrentIdentityWeakKeyHashMap.java index a191fd5aaf..23aec45e5c 100644 --- a/src/main/java/io/netty/util/internal/ConcurrentIdentityWeakKeyHashMap.java +++ b/src/main/java/io/netty/util/internal/ConcurrentIdentityWeakKeyHashMap.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/ConcurrentWeakKeyHashMap.java b/src/main/java/io/netty/util/internal/ConcurrentWeakKeyHashMap.java index b61005cbfa..b716bfd27e 100644 --- a/src/main/java/io/netty/util/internal/ConcurrentWeakKeyHashMap.java +++ b/src/main/java/io/netty/util/internal/ConcurrentWeakKeyHashMap.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/ConversionUtil.java b/src/main/java/io/netty/util/internal/ConversionUtil.java index f779e8bbc2..ea263aa997 100644 --- a/src/main/java/io/netty/util/internal/ConversionUtil.java +++ b/src/main/java/io/netty/util/internal/ConversionUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/DeadLockProofWorker.java b/src/main/java/io/netty/util/internal/DeadLockProofWorker.java index 57363c755a..825f5f3c77 100644 --- a/src/main/java/io/netty/util/internal/DeadLockProofWorker.java +++ b/src/main/java/io/netty/util/internal/DeadLockProofWorker.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/ExecutorUtil.java b/src/main/java/io/netty/util/internal/ExecutorUtil.java index d4490eb21f..b7546ed2e6 100644 --- a/src/main/java/io/netty/util/internal/ExecutorUtil.java +++ b/src/main/java/io/netty/util/internal/ExecutorUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/LegacyLinkedTransferQueue.java b/src/main/java/io/netty/util/internal/LegacyLinkedTransferQueue.java index 9865780c85..3fa4bdf9bd 100644 --- a/src/main/java/io/netty/util/internal/LegacyLinkedTransferQueue.java +++ b/src/main/java/io/netty/util/internal/LegacyLinkedTransferQueue.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/LinkedTransferQueue.java b/src/main/java/io/netty/util/internal/LinkedTransferQueue.java index c4d746e746..b43634016e 100644 --- a/src/main/java/io/netty/util/internal/LinkedTransferQueue.java +++ b/src/main/java/io/netty/util/internal/LinkedTransferQueue.java @@ -1,3 +1,19 @@ +/* + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + */ + /* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at @@ -61,7 +77,8 @@ import java.util.concurrent.locks.LockSupport; * * Java Collections Framework. * - * @since 1.7 + * @since 1.7 + * @param the type of elements held in this collection */ public class LinkedTransferQueue extends AbstractQueue diff --git a/src/main/java/io/netty/util/internal/NonReentrantLock.java b/src/main/java/io/netty/util/internal/NonReentrantLock.java index 69afd454fe..3cc3163548 100644 --- a/src/main/java/io/netty/util/internal/NonReentrantLock.java +++ b/src/main/java/io/netty/util/internal/NonReentrantLock.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/QueueFactory.java b/src/main/java/io/netty/util/internal/QueueFactory.java index 2f30198de1..575441787b 100644 --- a/src/main/java/io/netty/util/internal/QueueFactory.java +++ b/src/main/java/io/netty/util/internal/QueueFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ @@ -22,8 +22,10 @@ import io.netty.util.UnsafeDetectUtil; /** * This factory should be used to create the "optimal" {@link BlockingQueue} instance for the running JVM. - * - */ + * + + + */ public class QueueFactory { private static final boolean useUnsafe = UnsafeDetectUtil.isUnsafeFound(QueueFactory.class.getClassLoader()); diff --git a/src/main/java/io/netty/util/internal/ReusableIterator.java b/src/main/java/io/netty/util/internal/ReusableIterator.java index 33bf70774f..019e24bed7 100644 --- a/src/main/java/io/netty/util/internal/ReusableIterator.java +++ b/src/main/java/io/netty/util/internal/ReusableIterator.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/SharedResourceMisuseDetector.java b/src/main/java/io/netty/util/internal/SharedResourceMisuseDetector.java index 6f7e06b71b..7daf3a1e77 100644 --- a/src/main/java/io/netty/util/internal/SharedResourceMisuseDetector.java +++ b/src/main/java/io/netty/util/internal/SharedResourceMisuseDetector.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/StackTraceSimplifier.java b/src/main/java/io/netty/util/internal/StackTraceSimplifier.java index 4c55c8a1f1..3146416dc1 100644 --- a/src/main/java/io/netty/util/internal/StackTraceSimplifier.java +++ b/src/main/java/io/netty/util/internal/StackTraceSimplifier.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/StringUtil.java b/src/main/java/io/netty/util/internal/StringUtil.java index 9cc4281bed..95540f1e30 100644 --- a/src/main/java/io/netty/util/internal/StringUtil.java +++ b/src/main/java/io/netty/util/internal/StringUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/SystemPropertyUtil.java b/src/main/java/io/netty/util/internal/SystemPropertyUtil.java index 4b945267a9..fde1761f91 100644 --- a/src/main/java/io/netty/util/internal/SystemPropertyUtil.java +++ b/src/main/java/io/netty/util/internal/SystemPropertyUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/ThreadLocalBoolean.java b/src/main/java/io/netty/util/internal/ThreadLocalBoolean.java index 772ed75d62..be60001439 100644 --- a/src/main/java/io/netty/util/internal/ThreadLocalBoolean.java +++ b/src/main/java/io/netty/util/internal/ThreadLocalBoolean.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/ThreadLocalRandom.java b/src/main/java/io/netty/util/internal/ThreadLocalRandom.java index 6dd15b886d..11959f9e15 100644 --- a/src/main/java/io/netty/util/internal/ThreadLocalRandom.java +++ b/src/main/java/io/netty/util/internal/ThreadLocalRandom.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/UnterminatableExecutor.java b/src/main/java/io/netty/util/internal/UnterminatableExecutor.java index 45fa242dcd..b354d81d8f 100644 --- a/src/main/java/io/netty/util/internal/UnterminatableExecutor.java +++ b/src/main/java/io/netty/util/internal/UnterminatableExecutor.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/jzlib/Adler32.java b/src/main/java/io/netty/util/internal/jzlib/Adler32.java index 1e417997f1..13a8cefaa8 100644 --- a/src/main/java/io/netty/util/internal/jzlib/Adler32.java +++ b/src/main/java/io/netty/util/internal/jzlib/Adler32.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/CRC32.java b/src/main/java/io/netty/util/internal/jzlib/CRC32.java index 61f093144d..e65f32e51c 100644 --- a/src/main/java/io/netty/util/internal/jzlib/CRC32.java +++ b/src/main/java/io/netty/util/internal/jzlib/CRC32.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/internal/jzlib/Deflate.java b/src/main/java/io/netty/util/internal/jzlib/Deflate.java index 102447ae2e..a0fb3812d0 100644 --- a/src/main/java/io/netty/util/internal/jzlib/Deflate.java +++ b/src/main/java/io/netty/util/internal/jzlib/Deflate.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/InfBlocks.java b/src/main/java/io/netty/util/internal/jzlib/InfBlocks.java index 5a4adb0317..2af281e50e 100644 --- a/src/main/java/io/netty/util/internal/jzlib/InfBlocks.java +++ b/src/main/java/io/netty/util/internal/jzlib/InfBlocks.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/InfCodes.java b/src/main/java/io/netty/util/internal/jzlib/InfCodes.java index f6ee9ca55c..ae23c56cc6 100644 --- a/src/main/java/io/netty/util/internal/jzlib/InfCodes.java +++ b/src/main/java/io/netty/util/internal/jzlib/InfCodes.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/InfTree.java b/src/main/java/io/netty/util/internal/jzlib/InfTree.java index e0b0d15c8b..64ab9554cd 100644 --- a/src/main/java/io/netty/util/internal/jzlib/InfTree.java +++ b/src/main/java/io/netty/util/internal/jzlib/InfTree.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/Inflate.java b/src/main/java/io/netty/util/internal/jzlib/Inflate.java index 618b80df3b..a7898f9d45 100644 --- a/src/main/java/io/netty/util/internal/jzlib/Inflate.java +++ b/src/main/java/io/netty/util/internal/jzlib/Inflate.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/JZlib.java b/src/main/java/io/netty/util/internal/jzlib/JZlib.java index 0a4b2ebeba..aa46e37da2 100644 --- a/src/main/java/io/netty/util/internal/jzlib/JZlib.java +++ b/src/main/java/io/netty/util/internal/jzlib/JZlib.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/StaticTree.java b/src/main/java/io/netty/util/internal/jzlib/StaticTree.java index 6d82e22677..ce6e6ea455 100644 --- a/src/main/java/io/netty/util/internal/jzlib/StaticTree.java +++ b/src/main/java/io/netty/util/internal/jzlib/StaticTree.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/Tree.java b/src/main/java/io/netty/util/internal/jzlib/Tree.java index deec53832f..e90ee3056e 100644 --- a/src/main/java/io/netty/util/internal/jzlib/Tree.java +++ b/src/main/java/io/netty/util/internal/jzlib/Tree.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/jzlib/ZStream.java b/src/main/java/io/netty/util/internal/jzlib/ZStream.java index a4e171d4f7..9bc28c205f 100644 --- a/src/main/java/io/netty/util/internal/jzlib/ZStream.java +++ b/src/main/java/io/netty/util/internal/jzlib/ZStream.java @@ -1,45 +1,19 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ -/* -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the distribution. - - 3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ /* * This program is based on zlib-1.1.3, so all credit should go authors * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu) diff --git a/src/main/java/io/netty/util/internal/package-info.java b/src/main/java/io/netty/util/internal/package-info.java index c7421eba3b..3de03c2160 100644 --- a/src/main/java/io/netty/util/internal/package-info.java +++ b/src/main/java/io/netty/util/internal/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/main/java/io/netty/util/package-info.java b/src/main/java/io/netty/util/package-info.java index 0e08802faf..016780c773 100644 --- a/src/main/java/io/netty/util/package-info.java +++ b/src/main/java/io/netty/util/package-info.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/bootstrap/AbstractSocketClientBootstrapTest.java b/src/test/java/io/netty/bootstrap/AbstractSocketClientBootstrapTest.java index 5401bced47..fb80aaae2f 100644 --- a/src/test/java/io/netty/bootstrap/AbstractSocketClientBootstrapTest.java +++ b/src/test/java/io/netty/bootstrap/AbstractSocketClientBootstrapTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/bootstrap/AbstractSocketServerBootstrapTest.java b/src/test/java/io/netty/bootstrap/AbstractSocketServerBootstrapTest.java index 2cb29cef28..15edd45227 100644 --- a/src/test/java/io/netty/bootstrap/AbstractSocketServerBootstrapTest.java +++ b/src/test/java/io/netty/bootstrap/AbstractSocketServerBootstrapTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/bootstrap/BootstrapOrderedMapTest.java b/src/test/java/io/netty/bootstrap/BootstrapOrderedMapTest.java index ff710d7465..83297e1d46 100644 --- a/src/test/java/io/netty/bootstrap/BootstrapOrderedMapTest.java +++ b/src/test/java/io/netty/bootstrap/BootstrapOrderedMapTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/bootstrap/BootstrapTest.java b/src/test/java/io/netty/bootstrap/BootstrapTest.java index 29420a66b1..5255be1ddf 100644 --- a/src/test/java/io/netty/bootstrap/BootstrapTest.java +++ b/src/test/java/io/netty/bootstrap/BootstrapTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/bootstrap/NioSocketClientBootstrapTest.java b/src/test/java/io/netty/bootstrap/NioSocketClientBootstrapTest.java index 6542ca7932..a1a77dfd3d 100644 --- a/src/test/java/io/netty/bootstrap/NioSocketClientBootstrapTest.java +++ b/src/test/java/io/netty/bootstrap/NioSocketClientBootstrapTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/bootstrap/NioSocketServerBootstrapTest.java b/src/test/java/io/netty/bootstrap/NioSocketServerBootstrapTest.java index 7c0086911c..f2e63968ff 100644 --- a/src/test/java/io/netty/bootstrap/NioSocketServerBootstrapTest.java +++ b/src/test/java/io/netty/bootstrap/NioSocketServerBootstrapTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/bootstrap/OioSocketClientBootstrapTest.java b/src/test/java/io/netty/bootstrap/OioSocketClientBootstrapTest.java index fdc89c9581..c6d864eacd 100644 --- a/src/test/java/io/netty/bootstrap/OioSocketClientBootstrapTest.java +++ b/src/test/java/io/netty/bootstrap/OioSocketClientBootstrapTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/bootstrap/OioSocketServerBootstrapTest.java b/src/test/java/io/netty/bootstrap/OioSocketServerBootstrapTest.java index 40397e4d1b..afd75d66b1 100644 --- a/src/test/java/io/netty/bootstrap/OioSocketServerBootstrapTest.java +++ b/src/test/java/io/netty/bootstrap/OioSocketServerBootstrapTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/AbstractChannelBufferTest.java b/src/test/java/io/netty/buffer/AbstractChannelBufferTest.java index 13685c818e..62904c15ae 100644 --- a/src/test/java/io/netty/buffer/AbstractChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/AbstractChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/AbstractCompositeChannelBufferTest.java b/src/test/java/io/netty/buffer/AbstractCompositeChannelBufferTest.java index 4e6acad9d4..ae016cce0a 100644 --- a/src/test/java/io/netty/buffer/AbstractCompositeChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/AbstractCompositeChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/BigEndianCompositeChannelBufferTest.java b/src/test/java/io/netty/buffer/BigEndianCompositeChannelBufferTest.java index 815e0942f2..c0cc79ae1a 100644 --- a/src/test/java/io/netty/buffer/BigEndianCompositeChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/BigEndianCompositeChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/BigEndianDirectChannelBufferTest.java b/src/test/java/io/netty/buffer/BigEndianDirectChannelBufferTest.java index bc0ae86df4..7d2bdb1a6c 100644 --- a/src/test/java/io/netty/buffer/BigEndianDirectChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/BigEndianDirectChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/BigEndianHeapChannelBufferTest.java b/src/test/java/io/netty/buffer/BigEndianHeapChannelBufferTest.java index 9be61f4b51..af3226f024 100644 --- a/src/test/java/io/netty/buffer/BigEndianHeapChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/BigEndianHeapChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/ByteBufferBackedHeapChannelBufferTest.java b/src/test/java/io/netty/buffer/ByteBufferBackedHeapChannelBufferTest.java index 1693750811..ec7533e0f6 100644 --- a/src/test/java/io/netty/buffer/ByteBufferBackedHeapChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/ByteBufferBackedHeapChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/ChannelBufferIndexFinderTest.java b/src/test/java/io/netty/buffer/ChannelBufferIndexFinderTest.java index 6a42ae4829..204f21d520 100644 --- a/src/test/java/io/netty/buffer/ChannelBufferIndexFinderTest.java +++ b/src/test/java/io/netty/buffer/ChannelBufferIndexFinderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/ChannelBufferStreamTest.java b/src/test/java/io/netty/buffer/ChannelBufferStreamTest.java index 5044442812..5ddd657ec3 100644 --- a/src/test/java/io/netty/buffer/ChannelBufferStreamTest.java +++ b/src/test/java/io/netty/buffer/ChannelBufferStreamTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/ChannelBuffersTest.java b/src/test/java/io/netty/buffer/ChannelBuffersTest.java index 299f549148..79ef19ec81 100644 --- a/src/test/java/io/netty/buffer/ChannelBuffersTest.java +++ b/src/test/java/io/netty/buffer/ChannelBuffersTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/DuplicateChannelBufferTest.java b/src/test/java/io/netty/buffer/DuplicateChannelBufferTest.java index 626a323365..e0140e8dee 100644 --- a/src/test/java/io/netty/buffer/DuplicateChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/DuplicateChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/DynamicChannelBufferTest.java b/src/test/java/io/netty/buffer/DynamicChannelBufferTest.java index dd0c5d1130..8d0c81af5e 100644 --- a/src/test/java/io/netty/buffer/DynamicChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/DynamicChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/LittleEndianCompositeChannelBufferTest.java b/src/test/java/io/netty/buffer/LittleEndianCompositeChannelBufferTest.java index ca01bb47fc..7f7ca267bb 100644 --- a/src/test/java/io/netty/buffer/LittleEndianCompositeChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/LittleEndianCompositeChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/LittleEndianDirectChannelBufferTest.java b/src/test/java/io/netty/buffer/LittleEndianDirectChannelBufferTest.java index 1aa7200987..2c19c9c65d 100644 --- a/src/test/java/io/netty/buffer/LittleEndianDirectChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/LittleEndianDirectChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/LittleEndianHeapChannelBufferTest.java b/src/test/java/io/netty/buffer/LittleEndianHeapChannelBufferTest.java index 1666eab613..d5d632b9d5 100644 --- a/src/test/java/io/netty/buffer/LittleEndianHeapChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/LittleEndianHeapChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/ReadOnlyChannelBufferTest.java b/src/test/java/io/netty/buffer/ReadOnlyChannelBufferTest.java index cc55efe13e..8731b7eb02 100644 --- a/src/test/java/io/netty/buffer/ReadOnlyChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/ReadOnlyChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/SlicedChannelBufferTest.java b/src/test/java/io/netty/buffer/SlicedChannelBufferTest.java index a63bdccde6..04a3d119b5 100644 --- a/src/test/java/io/netty/buffer/SlicedChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/SlicedChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/buffer/TruncatedChannelBufferTest.java b/src/test/java/io/netty/buffer/TruncatedChannelBufferTest.java index 343bb5f7b2..94ddec46a6 100644 --- a/src/test/java/io/netty/buffer/TruncatedChannelBufferTest.java +++ b/src/test/java/io/netty/buffer/TruncatedChannelBufferTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/CompleteChannelFutureTest.java b/src/test/java/io/netty/channel/CompleteChannelFutureTest.java index b74e154404..29a5fedb50 100644 --- a/src/test/java/io/netty/channel/CompleteChannelFutureTest.java +++ b/src/test/java/io/netty/channel/CompleteChannelFutureTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/FailedChannelFutureTest.java b/src/test/java/io/netty/channel/FailedChannelFutureTest.java index 5fbfc876a3..bf43e07fdc 100644 --- a/src/test/java/io/netty/channel/FailedChannelFutureTest.java +++ b/src/test/java/io/netty/channel/FailedChannelFutureTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/StaticChannelPipelineTest.java b/src/test/java/io/netty/channel/StaticChannelPipelineTest.java index 9e2f63eb3c..04d596ab83 100644 --- a/src/test/java/io/netty/channel/StaticChannelPipelineTest.java +++ b/src/test/java/io/netty/channel/StaticChannelPipelineTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/SucceededChannelFutureTest.java b/src/test/java/io/netty/channel/SucceededChannelFutureTest.java index 25d2762dbc..a29d022e94 100644 --- a/src/test/java/io/netty/channel/SucceededChannelFutureTest.java +++ b/src/test/java/io/netty/channel/SucceededChannelFutureTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/AbstractSocketEchoTest.java b/src/test/java/io/netty/channel/socket/AbstractSocketEchoTest.java index f80c6ba898..b41e33999c 100644 --- a/src/test/java/io/netty/channel/socket/AbstractSocketEchoTest.java +++ b/src/test/java/io/netty/channel/socket/AbstractSocketEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/NioClientSocketShutdownTimeTest.java b/src/test/java/io/netty/channel/socket/NioClientSocketShutdownTimeTest.java index 7987605f75..51ffc8236a 100644 --- a/src/test/java/io/netty/channel/socket/NioClientSocketShutdownTimeTest.java +++ b/src/test/java/io/netty/channel/socket/NioClientSocketShutdownTimeTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/NioNioSocketEchoTest.java b/src/test/java/io/netty/channel/socket/NioNioSocketEchoTest.java index ab379ae000..44c234ae58 100644 --- a/src/test/java/io/netty/channel/socket/NioNioSocketEchoTest.java +++ b/src/test/java/io/netty/channel/socket/NioNioSocketEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/NioOioSocketEchoTest.java b/src/test/java/io/netty/channel/socket/NioOioSocketEchoTest.java index 5ad9e24a20..10c3fee546 100644 --- a/src/test/java/io/netty/channel/socket/NioOioSocketEchoTest.java +++ b/src/test/java/io/netty/channel/socket/NioOioSocketEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/NioServerSocketShutdownTimeTest.java b/src/test/java/io/netty/channel/socket/NioServerSocketShutdownTimeTest.java index a205ecab6f..534fc0cb68 100644 --- a/src/test/java/io/netty/channel/socket/NioServerSocketShutdownTimeTest.java +++ b/src/test/java/io/netty/channel/socket/NioServerSocketShutdownTimeTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/OioNioSocketEchoTest.java b/src/test/java/io/netty/channel/socket/OioNioSocketEchoTest.java index cc6d420bcb..b9e25256f9 100644 --- a/src/test/java/io/netty/channel/socket/OioNioSocketEchoTest.java +++ b/src/test/java/io/netty/channel/socket/OioNioSocketEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/OioOioSocketEchoTest.java b/src/test/java/io/netty/channel/socket/OioOioSocketEchoTest.java index 2601d771d8..c7d1a33e08 100644 --- a/src/test/java/io/netty/channel/socket/OioOioSocketEchoTest.java +++ b/src/test/java/io/netty/channel/socket/OioOioSocketEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/AcceptedServerChannelRequestDispatchTest.java b/src/test/java/io/netty/channel/socket/http/AcceptedServerChannelRequestDispatchTest.java index 1baacc97e5..25c85fde9c 100644 --- a/src/test/java/io/netty/channel/socket/http/AcceptedServerChannelRequestDispatchTest.java +++ b/src/test/java/io/netty/channel/socket/http/AcceptedServerChannelRequestDispatchTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/FakeChannelConfig.java b/src/test/java/io/netty/channel/socket/http/FakeChannelConfig.java index 7f476213d7..4de34b94ce 100644 --- a/src/test/java/io/netty/channel/socket/http/FakeChannelConfig.java +++ b/src/test/java/io/netty/channel/socket/http/FakeChannelConfig.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/FakeChannelSink.java b/src/test/java/io/netty/channel/socket/http/FakeChannelSink.java index 0d8d9546b5..0798eb94ad 100644 --- a/src/test/java/io/netty/channel/socket/http/FakeChannelSink.java +++ b/src/test/java/io/netty/channel/socket/http/FakeChannelSink.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/FakeClientSocketChannelFactory.java b/src/test/java/io/netty/channel/socket/http/FakeClientSocketChannelFactory.java index 972f18a158..a27bedc813 100644 --- a/src/test/java/io/netty/channel/socket/http/FakeClientSocketChannelFactory.java +++ b/src/test/java/io/netty/channel/socket/http/FakeClientSocketChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannel.java b/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannel.java index 284405a117..f6f8162c42 100644 --- a/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannel.java +++ b/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannelConfig.java b/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannelConfig.java index c6888edee9..680e47bb1c 100644 --- a/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannelConfig.java +++ b/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannelConfig.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannelFactory.java b/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannelFactory.java index 8dea7564cb..a0f5330133 100644 --- a/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannelFactory.java +++ b/src/test/java/io/netty/channel/socket/http/FakeServerSocketChannelFactory.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/FakeSocketChannel.java b/src/test/java/io/netty/channel/socket/http/FakeSocketChannel.java index ae23618ae9..3e385bfcca 100644 --- a/src/test/java/io/netty/channel/socket/http/FakeSocketChannel.java +++ b/src/test/java/io/netty/channel/socket/http/FakeSocketChannel.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelAcceptedChannelSinkTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelAcceptedChannelSinkTest.java index cf8af96e6e..4a853f69ef 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelAcceptedChannelSinkTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelAcceptedChannelSinkTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelClientChannelConfigTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelClientChannelConfigTest.java index 337d501309..9bf4ddb78e 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelClientChannelConfigTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelClientChannelConfigTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelClientChannelTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelClientChannelTest.java index 14e2683973..599c960a6d 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelClientChannelTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelClientChannelTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelClientPollHandlerTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelClientPollHandlerTest.java index d34c7c281e..7a5cbecbbb 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelClientPollHandlerTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelClientPollHandlerTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelClientSendHandlerTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelClientSendHandlerTest.java index b31d52f5ae..545c3f8cf3 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelClientSendHandlerTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelClientSendHandlerTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelFactoryTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelFactoryTest.java index b484ae8401..684ebe2298 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelFactoryTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelFactoryTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelSinkTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelSinkTest.java index 962ecce3fb..e6569e66d9 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelSinkTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelSinkTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelTest.java index 857b18b120..704983eec5 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelServerChannelTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelSoakTester.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelSoakTester.java index c35652ddfa..e34b69e82f 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelSoakTester.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelSoakTester.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/HttpTunnelTest.java b/src/test/java/io/netty/channel/socket/http/HttpTunnelTest.java index c82336f08e..497841a831 100644 --- a/src/test/java/io/netty/channel/socket/http/HttpTunnelTest.java +++ b/src/test/java/io/netty/channel/socket/http/HttpTunnelTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/MockChannelStateListener.java b/src/test/java/io/netty/channel/socket/http/MockChannelStateListener.java index 7209abdf1c..8d37b3c422 100644 --- a/src/test/java/io/netty/channel/socket/http/MockChannelStateListener.java +++ b/src/test/java/io/netty/channel/socket/http/MockChannelStateListener.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/NettyTestUtils.java b/src/test/java/io/netty/channel/socket/http/NettyTestUtils.java index 99d4105743..3e2b326139 100644 --- a/src/test/java/io/netty/channel/socket/http/NettyTestUtils.java +++ b/src/test/java/io/netty/channel/socket/http/NettyTestUtils.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/NettyTestUtilsTest.java b/src/test/java/io/netty/channel/socket/http/NettyTestUtilsTest.java index 7c3ea8a456..34a402bc26 100644 --- a/src/test/java/io/netty/channel/socket/http/NettyTestUtilsTest.java +++ b/src/test/java/io/netty/channel/socket/http/NettyTestUtilsTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/NullChannelHandler.java b/src/test/java/io/netty/channel/socket/http/NullChannelHandler.java index 181c778bbc..34499d2490 100644 --- a/src/test/java/io/netty/channel/socket/http/NullChannelHandler.java +++ b/src/test/java/io/netty/channel/socket/http/NullChannelHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/SaturationManagerTest.java b/src/test/java/io/netty/channel/socket/http/SaturationManagerTest.java index 18febc02ef..9eb0cc0ea2 100644 --- a/src/test/java/io/netty/channel/socket/http/SaturationManagerTest.java +++ b/src/test/java/io/netty/channel/socket/http/SaturationManagerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + */ package io.netty.channel.socket.http; import static org.junit.Assert.*; @@ -8,7 +23,8 @@ import org.junit.Test; /** * Tests saturation managers - * + * + */ public class SaturationManagerTest { diff --git a/src/test/java/io/netty/channel/socket/http/ServerMessageSwitchTest.java b/src/test/java/io/netty/channel/socket/http/ServerMessageSwitchTest.java index 89eb77a42a..bbd364ec82 100644 --- a/src/test/java/io/netty/channel/socket/http/ServerMessageSwitchTest.java +++ b/src/test/java/io/netty/channel/socket/http/ServerMessageSwitchTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/UpstreamEventCatcher.java b/src/test/java/io/netty/channel/socket/http/UpstreamEventCatcher.java index cab141a62e..411c0eb564 100644 --- a/src/test/java/io/netty/channel/socket/http/UpstreamEventCatcher.java +++ b/src/test/java/io/netty/channel/socket/http/UpstreamEventCatcher.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/WriteFragmenterTest.java b/src/test/java/io/netty/channel/socket/http/WriteFragmenterTest.java index 423cc2230f..7865ca18a3 100644 --- a/src/test/java/io/netty/channel/socket/http/WriteFragmenterTest.java +++ b/src/test/java/io/netty/channel/socket/http/WriteFragmenterTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/http/WriteSplitterTest.java b/src/test/java/io/netty/channel/socket/http/WriteSplitterTest.java index 9387c70179..58a09f1684 100644 --- a/src/test/java/io/netty/channel/socket/http/WriteSplitterTest.java +++ b/src/test/java/io/netty/channel/socket/http/WriteSplitterTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/nio/NioDatagramChannelTest.java b/src/test/java/io/netty/channel/socket/nio/NioDatagramChannelTest.java index 99046f42a9..ffb89db37f 100644 --- a/src/test/java/io/netty/channel/socket/nio/NioDatagramChannelTest.java +++ b/src/test/java/io/netty/channel/socket/nio/NioDatagramChannelTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/nio/SimpleHandler.java b/src/test/java/io/netty/channel/socket/nio/SimpleHandler.java index 0649ead032..f624921220 100644 --- a/src/test/java/io/netty/channel/socket/nio/SimpleHandler.java +++ b/src/test/java/io/netty/channel/socket/nio/SimpleHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/channel/socket/nio/UdpClient.java b/src/test/java/io/netty/channel/socket/nio/UdpClient.java index 0a3aae7616..d891b20626 100644 --- a/src/test/java/io/netty/channel/socket/nio/UdpClient.java +++ b/src/test/java/io/netty/channel/socket/nio/UdpClient.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/bytes/ByteArrayDecoderTest.java b/src/test/java/io/netty/handler/codec/bytes/ByteArrayDecoderTest.java index 78fa5943a4..a03575c9aa 100644 --- a/src/test/java/io/netty/handler/codec/bytes/ByteArrayDecoderTest.java +++ b/src/test/java/io/netty/handler/codec/bytes/ByteArrayDecoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/bytes/ByteArrayEncoderTest.java b/src/test/java/io/netty/handler/codec/bytes/ByteArrayEncoderTest.java index ca6bd3fc90..d841e8c3f1 100644 --- a/src/test/java/io/netty/handler/codec/bytes/ByteArrayEncoderTest.java +++ b/src/test/java/io/netty/handler/codec/bytes/ByteArrayEncoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/frame/AbstractSocketFixedLengthEchoTest.java b/src/test/java/io/netty/handler/codec/frame/AbstractSocketFixedLengthEchoTest.java index 809bc9db27..c9bad3eaee 100644 --- a/src/test/java/io/netty/handler/codec/frame/AbstractSocketFixedLengthEchoTest.java +++ b/src/test/java/io/netty/handler/codec/frame/AbstractSocketFixedLengthEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/frame/DelimiterBasedFrameDecoderTest.java b/src/test/java/io/netty/handler/codec/frame/DelimiterBasedFrameDecoderTest.java index f305077823..7d1728de7a 100644 --- a/src/test/java/io/netty/handler/codec/frame/DelimiterBasedFrameDecoderTest.java +++ b/src/test/java/io/netty/handler/codec/frame/DelimiterBasedFrameDecoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/frame/LengthFieldBasedFrameDecoderTest.java b/src/test/java/io/netty/handler/codec/frame/LengthFieldBasedFrameDecoderTest.java index 00819750d2..7e24821b34 100644 --- a/src/test/java/io/netty/handler/codec/frame/LengthFieldBasedFrameDecoderTest.java +++ b/src/test/java/io/netty/handler/codec/frame/LengthFieldBasedFrameDecoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/frame/NioNioSocketFixedLengthEchoTest.java b/src/test/java/io/netty/handler/codec/frame/NioNioSocketFixedLengthEchoTest.java index 781db97f38..e9c41f03e3 100644 --- a/src/test/java/io/netty/handler/codec/frame/NioNioSocketFixedLengthEchoTest.java +++ b/src/test/java/io/netty/handler/codec/frame/NioNioSocketFixedLengthEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/frame/NioOioSocketFixedLengthEchoTest.java b/src/test/java/io/netty/handler/codec/frame/NioOioSocketFixedLengthEchoTest.java index 93c83ea462..c5a0260bc5 100644 --- a/src/test/java/io/netty/handler/codec/frame/NioOioSocketFixedLengthEchoTest.java +++ b/src/test/java/io/netty/handler/codec/frame/NioOioSocketFixedLengthEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/frame/OioNioSocketFixedLengthEchoTest.java b/src/test/java/io/netty/handler/codec/frame/OioNioSocketFixedLengthEchoTest.java index bcf962988a..8dfee2731b 100644 --- a/src/test/java/io/netty/handler/codec/frame/OioNioSocketFixedLengthEchoTest.java +++ b/src/test/java/io/netty/handler/codec/frame/OioNioSocketFixedLengthEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/frame/OioOioSocketFixedLengthEchoTest.java b/src/test/java/io/netty/handler/codec/frame/OioOioSocketFixedLengthEchoTest.java index 69635da48e..77ba5de155 100644 --- a/src/test/java/io/netty/handler/codec/frame/OioOioSocketFixedLengthEchoTest.java +++ b/src/test/java/io/netty/handler/codec/frame/OioOioSocketFixedLengthEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/http/CookieDecoderTest.java b/src/test/java/io/netty/handler/codec/http/CookieDecoderTest.java index 6a53c81b46..b9499381d0 100644 --- a/src/test/java/io/netty/handler/codec/http/CookieDecoderTest.java +++ b/src/test/java/io/netty/handler/codec/http/CookieDecoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/http/CookieEncoderTest.java b/src/test/java/io/netty/handler/codec/http/CookieEncoderTest.java index f57e0fbcdd..a924ac0d06 100644 --- a/src/test/java/io/netty/handler/codec/http/CookieEncoderTest.java +++ b/src/test/java/io/netty/handler/codec/http/CookieEncoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/http/DefaultHttpMessageTest.java b/src/test/java/io/netty/handler/codec/http/DefaultHttpMessageTest.java index 9bd28fc7be..cb3945a1d6 100644 --- a/src/test/java/io/netty/handler/codec/http/DefaultHttpMessageTest.java +++ b/src/test/java/io/netty/handler/codec/http/DefaultHttpMessageTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/http/HttpHeaderDateFormatTest.java b/src/test/java/io/netty/handler/codec/http/HttpHeaderDateFormatTest.java index 96abdad9eb..cc81284494 100644 --- a/src/test/java/io/netty/handler/codec/http/HttpHeaderDateFormatTest.java +++ b/src/test/java/io/netty/handler/codec/http/HttpHeaderDateFormatTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + */ package io.netty.handler.codec.http; import java.text.ParseException; diff --git a/src/test/java/io/netty/handler/codec/http/QueryStringDecoderTest.java b/src/test/java/io/netty/handler/codec/http/QueryStringDecoderTest.java index 18abfd09f6..1a3e580ea7 100644 --- a/src/test/java/io/netty/handler/codec/http/QueryStringDecoderTest.java +++ b/src/test/java/io/netty/handler/codec/http/QueryStringDecoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2010 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/protobuf/ProtobufVarint32FrameDecoderTest.java b/src/test/java/io/netty/handler/codec/protobuf/ProtobufVarint32FrameDecoderTest.java index bc9e3db2f8..29259fae9d 100644 --- a/src/test/java/io/netty/handler/codec/protobuf/ProtobufVarint32FrameDecoderTest.java +++ b/src/test/java/io/netty/handler/codec/protobuf/ProtobufVarint32FrameDecoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/protobuf/ProtobufVarint32LengthFieldPrependerTest.java b/src/test/java/io/netty/handler/codec/protobuf/ProtobufVarint32LengthFieldPrependerTest.java index bbf7b91004..d650942628 100644 --- a/src/test/java/io/netty/handler/codec/protobuf/ProtobufVarint32LengthFieldPrependerTest.java +++ b/src/test/java/io/netty/handler/codec/protobuf/ProtobufVarint32LengthFieldPrependerTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/replay/ReplayingDecoderTest.java b/src/test/java/io/netty/handler/codec/replay/ReplayingDecoderTest.java index aa7932ae03..a96b0c6ff7 100644 --- a/src/test/java/io/netty/handler/codec/replay/ReplayingDecoderTest.java +++ b/src/test/java/io/netty/handler/codec/replay/ReplayingDecoderTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/AbstractSocketCompatibleObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/AbstractSocketCompatibleObjectStreamEchoTest.java index 3d5234414f..1d0b24aa46 100644 --- a/src/test/java/io/netty/handler/codec/serialization/AbstractSocketCompatibleObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/AbstractSocketCompatibleObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/AbstractSocketObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/AbstractSocketObjectStreamEchoTest.java index ac7296ab29..2051ecea49 100644 --- a/src/test/java/io/netty/handler/codec/serialization/AbstractSocketObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/AbstractSocketObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/CompactObjectSerializationTest.java b/src/test/java/io/netty/handler/codec/serialization/CompactObjectSerializationTest.java index 946cb18f83..23953ec468 100644 --- a/src/test/java/io/netty/handler/codec/serialization/CompactObjectSerializationTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/CompactObjectSerializationTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2011 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/NioNioSocketCompatibleObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/NioNioSocketCompatibleObjectStreamEchoTest.java index 35842a0533..9725515f8d 100644 --- a/src/test/java/io/netty/handler/codec/serialization/NioNioSocketCompatibleObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/NioNioSocketCompatibleObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/NioNioSocketObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/NioNioSocketObjectStreamEchoTest.java index 430352bc83..596d59bc41 100644 --- a/src/test/java/io/netty/handler/codec/serialization/NioNioSocketObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/NioNioSocketObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/NioOioSocketCompatibleObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/NioOioSocketCompatibleObjectStreamEchoTest.java index 8934b44f28..b18110b3e1 100644 --- a/src/test/java/io/netty/handler/codec/serialization/NioOioSocketCompatibleObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/NioOioSocketCompatibleObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/NioOioSocketObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/NioOioSocketObjectStreamEchoTest.java index bfc74bfc55..e693a10568 100644 --- a/src/test/java/io/netty/handler/codec/serialization/NioOioSocketObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/NioOioSocketObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/OioNioSocketCompatibleObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/OioNioSocketCompatibleObjectStreamEchoTest.java index 558c0862d0..8d7e232aa5 100644 --- a/src/test/java/io/netty/handler/codec/serialization/OioNioSocketCompatibleObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/OioNioSocketCompatibleObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/OioNioSocketObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/OioNioSocketObjectStreamEchoTest.java index 397616ed4d..c877cf3b6f 100644 --- a/src/test/java/io/netty/handler/codec/serialization/OioNioSocketObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/OioNioSocketObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/OioOioSocketCompatibleObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/OioOioSocketCompatibleObjectStreamEchoTest.java index 0169bf5390..98c47ab2ed 100644 --- a/src/test/java/io/netty/handler/codec/serialization/OioOioSocketCompatibleObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/OioOioSocketCompatibleObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/OioOioSocketObjectStreamEchoTest.java b/src/test/java/io/netty/handler/codec/serialization/OioOioSocketObjectStreamEchoTest.java index df264343b2..d3149e04d6 100644 --- a/src/test/java/io/netty/handler/codec/serialization/OioOioSocketObjectStreamEchoTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/OioOioSocketObjectStreamEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/serialization/SwitchableInputStreamTest.java b/src/test/java/io/netty/handler/codec/serialization/SwitchableInputStreamTest.java index 0eb346d314..f92e11e7c3 100644 --- a/src/test/java/io/netty/handler/codec/serialization/SwitchableInputStreamTest.java +++ b/src/test/java/io/netty/handler/codec/serialization/SwitchableInputStreamTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/string/AbstractSocketStringEchoTest.java b/src/test/java/io/netty/handler/codec/string/AbstractSocketStringEchoTest.java index 2561ad1f1e..c8be69048f 100644 --- a/src/test/java/io/netty/handler/codec/string/AbstractSocketStringEchoTest.java +++ b/src/test/java/io/netty/handler/codec/string/AbstractSocketStringEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/string/NioNioSocketStringEchoTest.java b/src/test/java/io/netty/handler/codec/string/NioNioSocketStringEchoTest.java index a50bae6562..492567e22f 100644 --- a/src/test/java/io/netty/handler/codec/string/NioNioSocketStringEchoTest.java +++ b/src/test/java/io/netty/handler/codec/string/NioNioSocketStringEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/string/NioOioSocketStringEchoTest.java b/src/test/java/io/netty/handler/codec/string/NioOioSocketStringEchoTest.java index 5015316112..763e9956f4 100644 --- a/src/test/java/io/netty/handler/codec/string/NioOioSocketStringEchoTest.java +++ b/src/test/java/io/netty/handler/codec/string/NioOioSocketStringEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/string/OioNioSocketStringEchoTest.java b/src/test/java/io/netty/handler/codec/string/OioNioSocketStringEchoTest.java index 841c06999c..a593dc7022 100644 --- a/src/test/java/io/netty/handler/codec/string/OioNioSocketStringEchoTest.java +++ b/src/test/java/io/netty/handler/codec/string/OioNioSocketStringEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/codec/string/OioOioSocketStringEchoTest.java b/src/test/java/io/netty/handler/codec/string/OioOioSocketStringEchoTest.java index f83bdd1a4c..74f5164302 100644 --- a/src/test/java/io/netty/handler/codec/string/OioOioSocketStringEchoTest.java +++ b/src/test/java/io/netty/handler/codec/string/OioOioSocketStringEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/ipfilter/IpFilterRuleTest.java b/src/test/java/io/netty/handler/ipfilter/IpFilterRuleTest.java index f90df2f260..668be0543c 100644 --- a/src/test/java/io/netty/handler/ipfilter/IpFilterRuleTest.java +++ b/src/test/java/io/netty/handler/ipfilter/IpFilterRuleTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 The Netty Project + * + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + */ package io.netty.handler.ipfilter; import java.net.InetAddress; diff --git a/src/test/java/io/netty/handler/ssl/AbstractSocketSslEchoTest.java b/src/test/java/io/netty/handler/ssl/AbstractSocketSslEchoTest.java index 9f693c5cde..193a8c9f7c 100644 --- a/src/test/java/io/netty/handler/ssl/AbstractSocketSslEchoTest.java +++ b/src/test/java/io/netty/handler/ssl/AbstractSocketSslEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/ssl/ImmediateExecutorTest.java b/src/test/java/io/netty/handler/ssl/ImmediateExecutorTest.java index 18d5b688e6..a8538ad3ee 100644 --- a/src/test/java/io/netty/handler/ssl/ImmediateExecutorTest.java +++ b/src/test/java/io/netty/handler/ssl/ImmediateExecutorTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/ssl/NioNioSocketSslEchoTest.java b/src/test/java/io/netty/handler/ssl/NioNioSocketSslEchoTest.java index ed1f4691f7..bc1fca4c8e 100644 --- a/src/test/java/io/netty/handler/ssl/NioNioSocketSslEchoTest.java +++ b/src/test/java/io/netty/handler/ssl/NioNioSocketSslEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/ssl/NioOioSocketSslEchoTest.java b/src/test/java/io/netty/handler/ssl/NioOioSocketSslEchoTest.java index f02528122b..6a9b9b2e10 100644 --- a/src/test/java/io/netty/handler/ssl/NioOioSocketSslEchoTest.java +++ b/src/test/java/io/netty/handler/ssl/NioOioSocketSslEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/ssl/OioNioSocketSslEchoTest.java b/src/test/java/io/netty/handler/ssl/OioNioSocketSslEchoTest.java index 78a35bc86e..52a3abc3e5 100644 --- a/src/test/java/io/netty/handler/ssl/OioNioSocketSslEchoTest.java +++ b/src/test/java/io/netty/handler/ssl/OioNioSocketSslEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/handler/ssl/OioOioSocketSslEchoTest.java b/src/test/java/io/netty/handler/ssl/OioOioSocketSslEchoTest.java index c75fa25654..97a26491c5 100644 --- a/src/test/java/io/netty/handler/ssl/OioOioSocketSslEchoTest.java +++ b/src/test/java/io/netty/handler/ssl/OioOioSocketSslEchoTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/CommonsLoggerFactoryTest.java b/src/test/java/io/netty/logging/CommonsLoggerFactoryTest.java index 52c88c5318..90f4509abc 100644 --- a/src/test/java/io/netty/logging/CommonsLoggerFactoryTest.java +++ b/src/test/java/io/netty/logging/CommonsLoggerFactoryTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/CommonsLoggerTest.java b/src/test/java/io/netty/logging/CommonsLoggerTest.java index cbd683b75f..0bdb7327c5 100644 --- a/src/test/java/io/netty/logging/CommonsLoggerTest.java +++ b/src/test/java/io/netty/logging/CommonsLoggerTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/InternalLoggerFactoryTest.java b/src/test/java/io/netty/logging/InternalLoggerFactoryTest.java index 61a7d3b84d..b9771d335c 100644 --- a/src/test/java/io/netty/logging/InternalLoggerFactoryTest.java +++ b/src/test/java/io/netty/logging/InternalLoggerFactoryTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/JBossLoggerFactoryTest.java b/src/test/java/io/netty/logging/JBossLoggerFactoryTest.java index 315c51ac44..2ef952c366 100644 --- a/src/test/java/io/netty/logging/JBossLoggerFactoryTest.java +++ b/src/test/java/io/netty/logging/JBossLoggerFactoryTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/JBossLoggerTest.java b/src/test/java/io/netty/logging/JBossLoggerTest.java index 6996999329..39cdfd39b8 100644 --- a/src/test/java/io/netty/logging/JBossLoggerTest.java +++ b/src/test/java/io/netty/logging/JBossLoggerTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/JdkLoggerFactoryTest.java b/src/test/java/io/netty/logging/JdkLoggerFactoryTest.java index 8418a716ac..93c2a5fee6 100644 --- a/src/test/java/io/netty/logging/JdkLoggerFactoryTest.java +++ b/src/test/java/io/netty/logging/JdkLoggerFactoryTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/JdkLoggerTest.java b/src/test/java/io/netty/logging/JdkLoggerTest.java index d2045a622b..213c963024 100644 --- a/src/test/java/io/netty/logging/JdkLoggerTest.java +++ b/src/test/java/io/netty/logging/JdkLoggerTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/Log4JLoggerFactoryTest.java b/src/test/java/io/netty/logging/Log4JLoggerFactoryTest.java index 8b0b376325..6265bfe895 100644 --- a/src/test/java/io/netty/logging/Log4JLoggerFactoryTest.java +++ b/src/test/java/io/netty/logging/Log4JLoggerFactoryTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/Log4JLoggerTest.java b/src/test/java/io/netty/logging/Log4JLoggerTest.java index 28aa881e15..933426aaa6 100644 --- a/src/test/java/io/netty/logging/Log4JLoggerTest.java +++ b/src/test/java/io/netty/logging/Log4JLoggerTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/Slf4JLoggerFactoryTest.java b/src/test/java/io/netty/logging/Slf4JLoggerFactoryTest.java index 6d02244dae..6b4ec9da51 100644 --- a/src/test/java/io/netty/logging/Slf4JLoggerFactoryTest.java +++ b/src/test/java/io/netty/logging/Slf4JLoggerFactoryTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/logging/Slf4JLoggerTest.java b/src/test/java/io/netty/logging/Slf4JLoggerTest.java index f61d1142bc..467623b9bd 100644 --- a/src/test/java/io/netty/logging/Slf4JLoggerTest.java +++ b/src/test/java/io/netty/logging/Slf4JLoggerTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/util/DebugUtilTest.java b/src/test/java/io/netty/util/DebugUtilTest.java index c7e7b63fc8..b97c6eae71 100644 --- a/src/test/java/io/netty/util/DebugUtilTest.java +++ b/src/test/java/io/netty/util/DebugUtilTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/util/DummyHandler.java b/src/test/java/io/netty/util/DummyHandler.java index 3a7d53d3b3..ed2e7ed815 100644 --- a/src/test/java/io/netty/util/DummyHandler.java +++ b/src/test/java/io/netty/util/DummyHandler.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/util/MapBackedSetTest.java b/src/test/java/io/netty/util/MapBackedSetTest.java index 0618cb0c58..3f35bf97c6 100644 --- a/src/test/java/io/netty/util/MapBackedSetTest.java +++ b/src/test/java/io/netty/util/MapBackedSetTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/util/TestUtil.java b/src/test/java/io/netty/util/TestUtil.java index 5251446add..a57824f6c0 100644 --- a/src/test/java/io/netty/util/TestUtil.java +++ b/src/test/java/io/netty/util/TestUtil.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/util/internal/ConversionUtilTest.java b/src/test/java/io/netty/util/internal/ConversionUtilTest.java index 03e12bbbb8..ca2b20faf7 100644 --- a/src/test/java/io/netty/util/internal/ConversionUtilTest.java +++ b/src/test/java/io/netty/util/internal/ConversionUtilTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/util/internal/StackTraceSimplifierTest.java b/src/test/java/io/netty/util/internal/StackTraceSimplifierTest.java index 176542a324..3f58b475ca 100644 --- a/src/test/java/io/netty/util/internal/StackTraceSimplifierTest.java +++ b/src/test/java/io/netty/util/internal/StackTraceSimplifierTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/test/java/io/netty/util/internal/StringUtilTest.java b/src/test/java/io/netty/util/internal/StringUtilTest.java index 06713fd16e..1f7ec05e7c 100644 --- a/src/test/java/io/netty/util/internal/StringUtilTest.java +++ b/src/test/java/io/netty/util/internal/StringUtilTest.java @@ -1,15 +1,15 @@ /* - * Copyright 2009 Red Hat, Inc. + * Copyright 2011 The Netty Project * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: + * The Netty Project licenses this file to you under the Apache License, + * version 2.0 (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at: * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ diff --git a/src/xref/stylesheet.css b/src/xref/stylesheet.css deleted file mode 100644 index 8c615e328b..0000000000 --- a/src/xref/stylesheet.css +++ /dev/null @@ -1,188 +0,0 @@ -/* - * Copyright 2009 Red Hat, Inc. - * - * Red Hat licenses this file to you under the Apache License, version 2.0 - * (the "License"); you may not use this file except in compliance with the - * License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the - * License for the specific language governing permissions and limitations - * under the License. - */ - -/* Page background color */ -body { - background-color: #FFFFFF; - background-image:url(../api/resources/bkg_gradient.gif); - background-repeat: repeat-x; - margin:0 auto; - font-family:'Lucida Grande', Geneva, Verdana, Arial, sans-serif; - font-size:12px; - padding:0em 2em; - color:#333; - - } - -/* Common elements */ - -font { - font-family: inherit; - font-size: inherit; - color: inherit; - font-weight: inherit; } - -hr { - border-top: 1px solid #E6E7E8; - border-bottom: 0 none; -} - -tt, tt *, pre, pre *, code, code * { - font-family: "Liberation Mono", "DejaVu Sans Mono", Consolas, Monaco, "Vera Sans Mono", "Lucida Console", "Courier New", monospace !important; -} - -a:link { color:#0066cc; } -a:visited { color:#8b5caf; } -a:hover { color:#6699cc; } - - -/* Headings */ -h1, h2 { - font-size: 145%; - background-image:url(../api/resources/h1_hdr.png); - background-repeat:no-repeat; - border-top:1px dotted #CCCCCC; - line-height:1.2em; - color:#182737; - font-size:2em; - padding:1.5em; - margin-top: 0px; - text-align:left; -} - - -/* Default Table elements and colors */ - -th, td, table { border-collapse:collapse; border-color: #E6E7E8; } - -.summary { - margin-bottom: 1em; - width: 100%; -} - -.summary, .summary th, .summary td { - border: solid #E6E7E8 1px; - font-weight: bold; -} - -.summary th { - background:#000000 url(../api/resources/bkg_blkheader.png) repeat-x scroll left top; - color:#FFFFFF; - font-size:12px; - font-weight:bold; - height:31px; - text-align:left; - padding: 0 10px 0 10px; -} - -.summary td { background: #FFFFFF; line-height: 175%; padding-left: 10px; } - -/* Navigation bar fonts and colors */ - -.overview { - background-color: #ffffff; - background-image:url(../api/resources/bkgheader.png); - background-repeat: repeat-x scroll left top; - line-height:2em; - padding-left:6px; - padding-right:6px; -} - -.overview ul { - margin-bottom: 0; -} - -.overview li { - display: inline; - list-style-type: none; - padding-right: 20px; - color: white; -} -.overview li a { - color: white; - font-weight: bold; -} - -.framenoframe { - background-color: #ffffff; - line-height:2em; - padding-left:6px; - padding-right:6px; -} - -.framenoframe ul { - margin:0; -} - -.framenoframe li { - display: inline; - list-style-type: none; - padding-right: 10px; -} -.framenoframe li a { - font-weight: bold; -} - -/* Class/package list on the left frame */ -body ul { - padding: 0; - margin-top: 0; -} - -body li { - list-style-type: none; - font-family: Helvetica, Arial, sans-serif; -} - -div#footer { - text-align:center; -} - -/* Syntax highlighting */ - -em { - color: rgb(63, 63, 191); - font-style: normal; -} - -em.comment { - color: rgb(63, 127, 95); - font-style: normal; -} - -.string { - color: rgb(42, 0, 255); -} - -.jxr_comment { - color: rgb(63, 127, 95); - font-style: normal; -} - -.jxr_javadoccomment { - color: rgb(63, 63, 191); - font-style: normal; -} - -.jxr_string { - color: rgb(42, 0, 255); -} - -.jxr_keyword { - color: rgb(127, 0, 85); - font-weight: bold; -} -