Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 37457 invoked from network); 25 Aug 2006 22:37:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Aug 2006 22:37:58 -0000 Received: (qmail 34307 invoked by uid 500); 25 Aug 2006 22:37:58 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 34279 invoked by uid 500); 25 Aug 2006 22:37:57 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 34268 invoked by uid 99); 25 Aug 2006 22:37:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Aug 2006 15:37:57 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Aug 2006 15:37:52 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 43F971A9825; Fri, 25 Aug 2006 15:37:32 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r436993 [5/5] - in /directory/trunks/mina/core/src: main/java/org/apache/mina/common/ main/java/org/apache/mina/common/support/ main/java/org/apache/mina/filter/ main/java/org/apache/mina/filter/codec/ main/java/org/apache/mina/filter/codec... Date: Fri, 25 Aug 2006 22:37:05 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060825223732.43F971A9825@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Modified: directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/DatagramTrafficControlTest.java URL: http://svn.apache.org/viewvc/directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/DatagramTrafficControlTest.java?rev=436993&r1=436992&r2=436993&view=diff ============================================================================== --- directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/DatagramTrafficControlTest.java (original) +++ directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/DatagramTrafficControlTest.java Fri Aug 25 15:36:56 2006 @@ -1,20 +1,21 @@ /* - * @(#) $Id$ - * - * Copyright 2004 The Apache Software Foundation - * - * 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. - * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this 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 org.apache.mina.transport.socket.nio; Modified: directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/SocketBindTest.java URL: http://svn.apache.org/viewvc/directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/SocketBindTest.java?rev=436993&r1=436992&r2=436993&view=diff ============================================================================== --- directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/SocketBindTest.java (original) +++ directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/SocketBindTest.java Fri Aug 25 15:36:56 2006 @@ -1,20 +1,21 @@ /* - * @(#) $Id$ - * - * Copyright 2004 The Apache Software Foundation - * - * 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. - * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this 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 org.apache.mina.transport.socket.nio; Modified: directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/SocketTrafficControlTest.java URL: http://svn.apache.org/viewvc/directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/SocketTrafficControlTest.java?rev=436993&r1=436992&r2=436993&view=diff ============================================================================== --- directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/SocketTrafficControlTest.java (original) +++ directory/trunks/mina/core/src/test/java/org/apache/mina/transport/socket/nio/SocketTrafficControlTest.java Fri Aug 25 15:36:56 2006 @@ -1,20 +1,21 @@ /* - * @(#) $Id$ - * - * Copyright 2004 The Apache Software Foundation - * - * 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. - * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this 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 org.apache.mina.transport.socket.nio; Modified: directory/trunks/mina/core/src/test/java/org/apache/mina/transport/vmpipe/VmPipeBindTest.java URL: http://svn.apache.org/viewvc/directory/trunks/mina/core/src/test/java/org/apache/mina/transport/vmpipe/VmPipeBindTest.java?rev=436993&r1=436992&r2=436993&view=diff ============================================================================== --- directory/trunks/mina/core/src/test/java/org/apache/mina/transport/vmpipe/VmPipeBindTest.java (original) +++ directory/trunks/mina/core/src/test/java/org/apache/mina/transport/vmpipe/VmPipeBindTest.java Fri Aug 25 15:36:56 2006 @@ -1,20 +1,21 @@ /* - * @(#) $Id$ - * - * Copyright 2004 The Apache Software Foundation - * - * 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. - * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this 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 org.apache.mina.transport.vmpipe; Modified: directory/trunks/mina/core/src/test/java/org/apache/mina/transport/vmpipe/VmPipeTrafficControlTest.java URL: http://svn.apache.org/viewvc/directory/trunks/mina/core/src/test/java/org/apache/mina/transport/vmpipe/VmPipeTrafficControlTest.java?rev=436993&r1=436992&r2=436993&view=diff ============================================================================== --- directory/trunks/mina/core/src/test/java/org/apache/mina/transport/vmpipe/VmPipeTrafficControlTest.java (original) +++ directory/trunks/mina/core/src/test/java/org/apache/mina/transport/vmpipe/VmPipeTrafficControlTest.java Fri Aug 25 15:36:56 2006 @@ -1,20 +1,21 @@ /* - * @(#) $Id$ - * - * Copyright 2004 The Apache Software Foundation - * - * 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. - * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this 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 org.apache.mina.transport.vmpipe; Modified: directory/trunks/mina/core/src/test/java/org/apache/mina/util/CharsetUtilTest.java URL: http://svn.apache.org/viewvc/directory/trunks/mina/core/src/test/java/org/apache/mina/util/CharsetUtilTest.java?rev=436993&r1=436992&r2=436993&view=diff ============================================================================== --- directory/trunks/mina/core/src/test/java/org/apache/mina/util/CharsetUtilTest.java (original) +++ directory/trunks/mina/core/src/test/java/org/apache/mina/util/CharsetUtilTest.java Fri Aug 25 15:36:56 2006 @@ -1,20 +1,21 @@ /* - * @(#) $Id$ - * - * Copyright 2004 The Apache Software Foundation - * - * 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. - * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this 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 org.apache.mina.util; Modified: directory/trunks/mina/core/src/test/java/org/apache/mina/util/IoFilterImpl.java URL: http://svn.apache.org/viewvc/directory/trunks/mina/core/src/test/java/org/apache/mina/util/IoFilterImpl.java?rev=436993&r1=436992&r2=436993&view=diff ============================================================================== --- directory/trunks/mina/core/src/test/java/org/apache/mina/util/IoFilterImpl.java (original) +++ directory/trunks/mina/core/src/test/java/org/apache/mina/util/IoFilterImpl.java Fri Aug 25 15:36:56 2006 @@ -1,20 +1,21 @@ /* - * @(#) $Id$ - * - * Copyright 2004 The Apache Software Foundation - * - * 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. - * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this 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 org.apache.mina.util; Modified: directory/trunks/mina/core/src/test/java/org/apache/mina/util/QueueTest.java URL: http://svn.apache.org/viewvc/directory/trunks/mina/core/src/test/java/org/apache/mina/util/QueueTest.java?rev=436993&r1=436992&r2=436993&view=diff ============================================================================== --- directory/trunks/mina/core/src/test/java/org/apache/mina/util/QueueTest.java (original) +++ directory/trunks/mina/core/src/test/java/org/apache/mina/util/QueueTest.java Fri Aug 25 15:36:56 2006 @@ -1,20 +1,21 @@ /* - * @(#) $Id$ - * - * Copyright 2004 The Apache Software Foundation - * - * 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. - * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this 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 org.apache.mina.util;