You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by gd...@apache.org on 2004/03/10 10:59:38 UTC

cvs commit: incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager MockResource.java MockResourceManager.java TestTransactionManager.java XATransactionTester.java

gdamour     2004/03/10 01:59:38

  Modified:    modules/transaction project.xml
               modules/transaction/src/etc/META-INF geronimo-service.xml
               modules/transaction/src/java/org/apache/geronimo/transaction
                        BeanTransactionContext.java ConnectionReleaser.java
                        ContainerTransactionContext.java
                        DoubleKeyedHashMap.java
                        InheritableTransactionContext.java
                        InstanceContext.java TransactionContext.java
                        TransactionManagerProxy.java TransactionProxy.java
                        UnspecifiedTransactionContext.java
               modules/transaction/src/java/org/apache/geronimo/transaction/log
                        UnrecoverableLog.java
               modules/transaction/src/java/org/apache/geronimo/transaction/manager
                        TransactionImpl.java TransactionLog.java
                        TransactionManagerImpl.java
                        UserTransactionImpl.java XidFactory.java
                        XidImpl.java
               modules/transaction/src/test/org/apache/geronimo/transaction/manager
                        MockResource.java MockResourceManager.java
                        TestTransactionManager.java
                        XATransactionTester.java
  Added:       modules/transaction NOTICE.txt
  Log:
  Reporters: David Jencks, Dain Sundstrom.
  
  Copyright range fix subsequent to the License migration 1.1 => 2.0.
  
  Revision  Changes    Path
  1.8       +18 -1     incubator-geronimo/modules/transaction/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/project.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- project.xml	19 Feb 2004 09:00:28 -0000	1.7
  +++ project.xml	10 Mar 2004 09:59:36 -0000	1.8
  @@ -1,4 +1,21 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  +<!--
  +
  +    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.
  +-->
  +  
   
   <!-- $Revision$ $Date$ -->
   
  
  
  
  1.1                  incubator-geronimo/modules/transaction/NOTICE.txt
  
  Index: NOTICE.txt
  ===================================================================
  This product includes software developed by
  The Apache Software Foundation (http://www.apache.org/).
  
  
  
  
  1.2       +17 -0     incubator-geronimo/modules/transaction/src/etc/META-INF/geronimo-service.xml
  
  Index: geronimo-service.xml
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/etc/META-INF/geronimo-service.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- geronimo-service.xml	25 Jan 2004 17:55:35 -0000	1.1
  +++ geronimo-service.xml	10 Mar 2004 09:59:36 -0000	1.2
  @@ -1,4 +1,21 @@
   <?xml version="1.0" encoding="UTF-8"?>
  +<!--
  +
  +    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.
  +-->
  +  
   <gbeans>
       <path>geronimo-transaction-DEV.jar</path>
       <path>geronimo-spec-jta-DEV.jar</path>
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/BeanTransactionContext.java
  
  Index: BeanTransactionContext.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/BeanTransactionContext.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BeanTransactionContext.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ BeanTransactionContext.java	10 Mar 2004 09:59:36 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/ConnectionReleaser.java
  
  Index: ConnectionReleaser.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/ConnectionReleaser.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ConnectionReleaser.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ ConnectionReleaser.java	10 Mar 2004 09:59:36 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/ContainerTransactionContext.java
  
  Index: ContainerTransactionContext.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/ContainerTransactionContext.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ContainerTransactionContext.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ ContainerTransactionContext.java	10 Mar 2004 09:59:36 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/DoubleKeyedHashMap.java
  
  Index: DoubleKeyedHashMap.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/DoubleKeyedHashMap.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DoubleKeyedHashMap.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ DoubleKeyedHashMap.java	10 Mar 2004 09:59:36 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/InheritableTransactionContext.java
  
  Index: InheritableTransactionContext.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/InheritableTransactionContext.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InheritableTransactionContext.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ InheritableTransactionContext.java	10 Mar 2004 09:59:36 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/InstanceContext.java
  
  Index: InstanceContext.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/InstanceContext.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InstanceContext.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ InstanceContext.java	10 Mar 2004 09:59:36 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/TransactionContext.java
  
  Index: TransactionContext.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/TransactionContext.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TransactionContext.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ TransactionContext.java	10 Mar 2004 09:59:36 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.6       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/TransactionManagerProxy.java
  
  Index: TransactionManagerProxy.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/TransactionManagerProxy.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- TransactionManagerProxy.java	25 Feb 2004 18:05:51 -0000	1.5
  +++ TransactionManagerProxy.java	10 Mar 2004 09:59:36 -0000	1.6
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.4       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/TransactionProxy.java
  
  Index: TransactionProxy.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/TransactionProxy.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TransactionProxy.java	25 Feb 2004 09:58:19 -0000	1.3
  +++ TransactionProxy.java	10 Mar 2004 09:59:36 -0000	1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/UnspecifiedTransactionContext.java
  
  Index: UnspecifiedTransactionContext.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/UnspecifiedTransactionContext.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- UnspecifiedTransactionContext.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ UnspecifiedTransactionContext.java	10 Mar 2004 09:59:36 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/log/UnrecoverableLog.java
  
  Index: UnrecoverableLog.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/log/UnrecoverableLog.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- UnrecoverableLog.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ UnrecoverableLog.java	10 Mar 2004 09:59:37 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.4       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/TransactionImpl.java
  
  Index: TransactionImpl.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/TransactionImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TransactionImpl.java	25 Feb 2004 09:58:19 -0000	1.3
  +++ TransactionImpl.java	10 Mar 2004 09:59:37 -0000	1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/TransactionLog.java
  
  Index: TransactionLog.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/TransactionLog.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TransactionLog.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ TransactionLog.java	10 Mar 2004 09:59:37 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.4       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java
  
  Index: TransactionManagerImpl.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/TransactionManagerImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TransactionManagerImpl.java	25 Feb 2004 09:58:19 -0000	1.3
  +++ TransactionManagerImpl.java	10 Mar 2004 09:59:37 -0000	1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.5       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/UserTransactionImpl.java
  
  Index: UserTransactionImpl.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/UserTransactionImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- UserTransactionImpl.java	25 Feb 2004 09:58:19 -0000	1.4
  +++ UserTransactionImpl.java	10 Mar 2004 09:59:37 -0000	1.5
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.4       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/XidFactory.java
  
  Index: XidFactory.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/XidFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XidFactory.java	25 Feb 2004 09:58:19 -0000	1.3
  +++ XidFactory.java	10 Mar 2004 09:59:37 -0000	1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.4       +2 -2      incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/XidImpl.java
  
  Index: XidImpl.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/java/org/apache/geronimo/transaction/manager/XidImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XidImpl.java	25 Feb 2004 09:58:19 -0000	1.3
  +++ XidImpl.java	10 Mar 2004 09:59:37 -0000	1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.4       +2 -2      incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager/MockResource.java
  
  Index: MockResource.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager/MockResource.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MockResource.java	25 Feb 2004 18:05:51 -0000	1.3
  +++ MockResource.java	10 Mar 2004 09:59:37 -0000	1.4
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager/MockResourceManager.java
  
  Index: MockResourceManager.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager/MockResourceManager.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MockResourceManager.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ MockResourceManager.java	10 Mar 2004 09:59:37 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager/TestTransactionManager.java
  
  Index: TestTransactionManager.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager/TestTransactionManager.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TestTransactionManager.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ TestTransactionManager.java	10 Mar 2004 09:59:37 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager/XATransactionTester.java
  
  Index: XATransactionTester.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/transaction/src/test/org/apache/geronimo/transaction/manager/XATransactionTester.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XATransactionTester.java	25 Feb 2004 09:58:19 -0000	1.2
  +++ XATransactionTester.java	10 Mar 2004 09:59:37 -0000	1.3
  @@ -1,6 +1,6 @@
   /**
    *
  - * Copyright 2004 The Apache Software Foundation
  + * Copyright 2003-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.