[jboss-cvs] JBossAS SVN: r85303 - projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Mar 5 11:02:14 EST 2009


Author: david.lloyd at jboss.com
Date: 2009-03-05 11:02:14 -0500 (Thu, 05 Mar 2009)
New Revision: 85303

Modified:
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/ExtLogRecord.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/Level.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogContext.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogContextSelector.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogManager.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggerInstance.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggerNode.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggingWriter.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/MDC.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/NDC.java
   projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/WriterOutputStream.java
Log:
copyright

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/ExtLogRecord.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/ExtLogRecord.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/ExtLogRecord.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,8 +1,8 @@
 /*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/Level.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/Level.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/Level.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.logmanager;
 
 /**

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogContext.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogContext.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogContext.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,8 +1,8 @@
 /*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogContextSelector.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogContextSelector.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogContextSelector.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,8 +1,8 @@
 /*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogManager.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogManager.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LogManager.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.logmanager;
 
 import java.beans.PropertyChangeListener;

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggerInstance.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggerInstance.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggerInstance.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.logmanager;
 
 import java.util.logging.Filter;

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggerNode.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggerNode.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggerNode.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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.logmanager;
 
 import java.lang.ref.WeakReference;

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggingWriter.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggingWriter.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/LoggingWriter.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,8 +1,8 @@
 /*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/MDC.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/MDC.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/MDC.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,8 +1,8 @@
 /*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/NDC.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/NDC.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/NDC.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,8 +1,8 @@
 /*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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

Modified: projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/WriterOutputStream.java
===================================================================
--- projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/WriterOutputStream.java	2009-03-05 16:00:43 UTC (rev 85302)
+++ projects/jboss-logmanager/trunk/src/main/java/org/jboss/logmanager/WriterOutputStream.java	2009-03-05 16:02:14 UTC (rev 85303)
@@ -1,8 +1,8 @@
 /*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, 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




More information about the jboss-cvs-commits mailing list