[jboss-cvs] JBossAS SVN: r57201 - in branches/Branch_4_0/remoting-int/src/main: org/jboss/aspects/remoting/interceptors/invoker org/jboss/aspects/remoting/interceptors/marshall org/jboss/aspects/remoting/interceptors/transport org/jboss/remoting/security/domain tests/org/jboss/test/remoting/interceptor

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Sep 26 08:18:24 EDT 2006


Author: dimitris at jboss.org
Date: 2006-09-26 08:18:05 -0400 (Tue, 26 Sep 2006)
New Revision: 57201

Modified:
   branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/invoker/InvokerInterceptor.java
   branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/invoker/RemotingInterceptorFactory.java
   branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/marshall/MarshallInterceptor.java
   branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/transport/TransportInterceptor.java
   branches/Branch_4_0/remoting-int/src/main/org/jboss/remoting/security/domain/DomainServerSocketFactoryService.java
   branches/Branch_4_0/remoting-int/src/main/org/jboss/remoting/security/domain/DomainServerSocketFactoryServiceMBean.java
   branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/ClientInterceptorTest.java
   branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/InterceptorTestCase.java
   branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/ServerInterceptorTest.java
   branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestInvocation.java
   branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestInvocationHandler.java
   branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestTarget.java
   branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestTargetMBean.java
Log:
JBAS-3601, switch copyright to RedHat Middleware LLC

Modified: branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/invoker/InvokerInterceptor.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/invoker/InvokerInterceptor.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/invoker/InvokerInterceptor.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.aspects.remoting.interceptors.invoker;
 

Modified: branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/invoker/RemotingInterceptorFactory.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/invoker/RemotingInterceptorFactory.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/invoker/RemotingInterceptorFactory.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.aspects.remoting.interceptors.invoker;
 
 import org.jboss.aop.advice.Interceptor;

Modified: branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/marshall/MarshallInterceptor.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/marshall/MarshallInterceptor.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/marshall/MarshallInterceptor.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.aspects.remoting.interceptors.marshall;
 

Modified: branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/transport/TransportInterceptor.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/transport/TransportInterceptor.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/org/jboss/aspects/remoting/interceptors/transport/TransportInterceptor.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.aspects.remoting.interceptors.transport;
 

Modified: branches/Branch_4_0/remoting-int/src/main/org/jboss/remoting/security/domain/DomainServerSocketFactoryService.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/org/jboss/remoting/security/domain/DomainServerSocketFactoryService.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/org/jboss/remoting/security/domain/DomainServerSocketFactoryService.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.remoting.security.domain;
 

Modified: branches/Branch_4_0/remoting-int/src/main/org/jboss/remoting/security/domain/DomainServerSocketFactoryServiceMBean.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/org/jboss/remoting/security/domain/DomainServerSocketFactoryServiceMBean.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/org/jboss/remoting/security/domain/DomainServerSocketFactoryServiceMBean.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.remoting.security.domain;
 
 import org.jboss.remoting.security.ServerSocketFactoryMBean;

Modified: branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/ClientInterceptorTest.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/ClientInterceptorTest.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/ClientInterceptorTest.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.test.remoting.interceptor;
 

Modified: branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/InterceptorTestCase.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/InterceptorTestCase.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/InterceptorTestCase.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.test.remoting.interceptor;
 

Modified: branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/ServerInterceptorTest.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/ServerInterceptorTest.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/ServerInterceptorTest.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.test.remoting.interceptor;
 

Modified: branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestInvocation.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestInvocation.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestInvocation.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,11 +1,24 @@
-/***************************************
- *                                     *
- *  JBoss: The OpenSource J2EE WebOS   *
- *                                     *
- *  Distributable under LGPL license.  *
- *  See terms of license at gnu.org.   *
- *                                     *
- ***************************************/
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.test.remoting.interceptor;
 
 import java.io.Serializable;

Modified: branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestInvocationHandler.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestInvocationHandler.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestInvocationHandler.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.test.remoting.interceptor;
 

Modified: branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestTarget.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestTarget.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestTarget.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.test.remoting.interceptor;
 

Modified: branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestTargetMBean.java
===================================================================
--- branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestTargetMBean.java	2006-09-26 12:10:47 UTC (rev 57200)
+++ branches/Branch_4_0/remoting-int/src/main/tests/org/jboss/test/remoting/interceptor/TestTargetMBean.java	2006-09-26 12:18:05 UTC (rev 57201)
@@ -1,8 +1,23 @@
 /*
- * JBoss, the OpenSource J2EE webOS
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
  *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY 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 along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 package org.jboss.test.remoting.interceptor;
 




More information about the jboss-cvs-commits mailing list