[jboss-svn-commits] JBL Code SVN: r21393 - in labs/jbosstm/trunk/qa: tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01 and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Aug 7 07:15:02 EDT 2008


Author: mmusgrov
Date: 2008-08-07 07:15:02 -0400 (Thu, 07 Aug 2008)
New Revision: 21393

Modified:
   labs/jbosstm/trunk/qa/testdefs/jbossts-qa-as-crashrecovery01-testdefs.xml
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test01.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test02.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test03.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashBMTBean.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashCMTBean.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashLocal.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashLocalHome.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashRem.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashRemHome.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureMode.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureSpec.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureType.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASTestResource.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/TestASRecovery.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ASClientTask.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ASTestConfig.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ClientAction.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerBindingConfig.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerTask.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerTaskException.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TaskProperty.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TaskValue.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TransactionLog.java
   labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/Utils.java
Log:
Add missing LGPL headers

Resolves JBTM-360


Modified: labs/jbosstm/trunk/qa/testdefs/jbossts-qa-as-crashrecovery01-testdefs.xml
===================================================================
--- labs/jbosstm/trunk/qa/testdefs/jbossts-qa-as-crashrecovery01-testdefs.xml	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/testdefs/jbossts-qa-as-crashrecovery01-testdefs.xml	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,6 +1,6 @@
 <!--
   JBoss, Home of Professional Open Source
-  Copyright 2007, Red Hat Middleware LLC, and individual contributors
+  Copyright 2008, Red Hat Middleware LLC, and individual contributors
   as indicated by the @author tags.
   See the copyright.txt in the distribution for a
   full listing of individual contributors.

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test01.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test01.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test01.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.ASCrashRecovery01;
 
 import org.jboss.jbossts.qa.astests.taskdefs.ClientAction;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test02.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test02.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test02.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.ASCrashRecovery01;
 
 import org.jboss.jbossts.qa.astests.taskdefs.ClientAction;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test03.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test03.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/ASCrashRecovery01/Test03.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.ASCrashRecovery01;
 
 import org.jboss.jbossts.qa.astests.taskdefs.ClientAction;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashBMTBean.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashBMTBean.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashBMTBean.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.crash;
 
 import org.jboss.jbossts.qa.astests.recovery.ASFailureSpec;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashCMTBean.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashCMTBean.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashCMTBean.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.crash;
 
 import org.jboss.jbossts.qa.astests.recovery.ASFailureSpec;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashLocal.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashLocal.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashLocal.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.crash;
 
 import org.jboss.jbossts.qa.astests.recovery.ASFailureSpec;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashLocalHome.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashLocalHome.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashLocalHome.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.crash;
 
 import javax.ejb.EJBLocalHome;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashRem.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashRem.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashRem.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.crash;
 
 import org.jboss.jbossts.qa.astests.recovery.ASFailureSpec;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashRemHome.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashRemHome.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/crash/CrashRemHome.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.crash;
 
 import javax.ejb.EJBHome;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureMode.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureMode.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureMode.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.recovery;
 
 import java.io.Serializable;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureSpec.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureSpec.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureSpec.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.recovery;
 
 import java.io.Serializable;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureType.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureType.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASFailureType.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.recovery;
 
 import java.io.Serializable;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASTestResource.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASTestResource.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/ASTestResource.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.recovery;
 
 import javax.transaction.xa.XAResource;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/TestASRecovery.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/TestASRecovery.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/recovery/TestASRecovery.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.recovery;
 
 import javax.transaction.xa.XAException;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ASClientTask.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ASClientTask.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ASClientTask.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 import org.apache.tools.ant.Task;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ASTestConfig.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ASTestConfig.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ASTestConfig.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 import org.apache.tools.ant.Task;
@@ -321,4 +341,4 @@
                 + " = jnp://"+ server.getHost() + ':' + server.getRmiPort()
                 + " and http port " + server.getHttpPort());
     }
-}
\ No newline at end of file
+}

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ClientAction.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ClientAction.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ClientAction.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 import java.util.Map;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerBindingConfig.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerBindingConfig.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerBindingConfig.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 import java.io.File;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerTask.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerTask.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerTask.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 import org.apache.tools.ant.BuildException;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerTaskException.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerTaskException.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/ServerTaskException.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 import java.util.Collection;

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TaskProperty.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TaskProperty.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TaskProperty.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 /**

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TaskValue.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TaskValue.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TaskValue.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 /**

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TransactionLog.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TransactionLog.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/TransactionLog.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 import com.arjuna.ats.arjuna.objectstore.ObjectStore;
@@ -145,4 +165,4 @@
 
         return action.status();
     }
-}
\ No newline at end of file
+}

Modified: labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/Utils.java
===================================================================
--- labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/Utils.java	2008-08-07 07:10:41 UTC (rev 21392)
+++ labs/jbosstm/trunk/qa/tests/src/org/jboss/jbossts/qa/astests/taskdefs/Utils.java	2008-08-07 11:15:02 UTC (rev 21393)
@@ -1,3 +1,23 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA  02110-1301, USA.
+ *
+ * (C) 2008,
+ * @author JBoss Inc.
+ */
 package org.jboss.jbossts.qa.astests.taskdefs;
 
 import java.io.File;




More information about the jboss-svn-commits mailing list